Add migration to expand api_keys.secret column max length

This commit is contained in:
Ryan Ahearn
2022-12-09 10:44:55 -05:00
parent c1c6fec28f
commit 1f183b96b9

View File

@@ -0,0 +1,21 @@
"""
Revision ID: 0381_encrypted_column_types
Revises: 0380_bst_to_local
Create Date: 2022-12-09 10:17:03.358405
"""
from alembic import op
import sqlalchemy as sa
revision = '0381_encrypted_column_types'
down_revision = '0380_bst_to_local'
def upgrade():
pass
def downgrade():
pass