mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
30 lines
740 B
Python
30 lines
740 B
Python
|
"""empty message
|
||
|
|
||
|
Revision ID: 893c0d18475f
|
||
|
Revises: 5f4a5625da66
|
||
|
Create Date: 2023-04-14 18:20:03.807367
|
||
|
|
||
|
"""
|
||
|
import sqlalchemy_utils
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '893c0d18475f'
|
||
|
down_revision = '5f4a5625da66'
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.create_index(op.f('ix_contact_pgp_finger_print'), 'contact', ['pgp_finger_print'], unique=False)
|
||
|
# ### end Alembic commands ###
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.drop_index(op.f('ix_contact_pgp_finger_print'), table_name='contact')
|
||
|
# ### end Alembic commands ###
|