fix: remove uniqueness for MySQL (#12185)

This commit is contained in:
Beto Dealmeida 2020-12-22 13:39:56 -08:00 committed by GitHub
parent 8e3f71df4d
commit a85bb4a3f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -45,7 +45,6 @@ def upgrade():
sa.ForeignKeyConstraint(["changed_by_fk"], ["ab_user.id"],),
sa.ForeignKeyConstraint(["created_by_fk"], ["ab_user.id"],),
sa.PrimaryKeyConstraint("id"),
sa.UniqueConstraint("bundle_url"),
sa.UniqueConstraint("key"),
sa.UniqueConstraint("name"),
)