Use encrypt/decrypt methods in place of signing

This commit is contained in:
Ryan Ahearn
2022-12-09 16:33:10 -05:00
parent 1f183b96b9
commit 17ee4c3f2b
15 changed files with 179 additions and 150 deletions

View File

@@ -14,8 +14,8 @@ down_revision = '0380_bst_to_local'
def upgrade():
pass
op.alter_column("api_keys", "secret", type_=sa.types.String())
def downgrade():
pass
op.alter_column("api_keys", "secret", type_=sa.types.String(length=255))