33 lines
839 B
Python
33 lines
839 B
Python
"""Add user id index on profile
|
|
|
|
Revision ID: bd83e779fcc1
|
|
Revises: 8cfe56a1e597
|
|
Create Date: 2026-03-10 19:33:12.629077
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'bd83e779fcc1'
|
|
down_revision = '8cfe56a1e597'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('profile', schema=None) as batch_op:
|
|
batch_op.create_index(batch_op.f('ix_profile_user_id'), ['user_id'], unique=False)
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('profile', schema=None) as batch_op:
|
|
batch_op.drop_index(batch_op.f('ix_profile_user_id'))
|
|
|
|
# ### end Alembic commands ###
|