This commit is contained in:
Kenneth Kehl
2023-08-29 14:54:30 -07:00
parent 19dcd7a48b
commit 1ecb747c6d
588 changed files with 34100 additions and 23589 deletions

View File

@@ -7,13 +7,15 @@ Create Date: 2021-05-13 14:15:25.259991
"""
from alembic import op
revision = '0357_validate_constraint'
down_revision = '0356_add_webautn_auth_type'
revision = "0357_validate_constraint"
down_revision = "0356_add_webautn_auth_type"
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.execute('ALTER TABLE users VALIDATE CONSTRAINT "ck_user_has_mobile_or_other_auth"')
op.execute(
'ALTER TABLE users VALIDATE CONSTRAINT "ck_user_has_mobile_or_other_auth"'
)
# ### end Alembic commands ###