"""orm column history

Revision ID: 7402b7981283
Revises: 2cd70a9a8419
Create Date: 2025-07-09 13:10:51.922154

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = '7402b7981283'
down_revision = '2cd70a9a8419'
branch_labels = None
depends_on = None


def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.drop_index('ix_cmf_orm_column_history_from_value_code', table_name='cmf_orm_column_history')
    op.drop_index('ix_cmf_orm_column_history_to_value_code', table_name='cmf_orm_column_history')
    # ### end Alembic commands ###


def downgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.create_index('ix_cmf_orm_column_history_to_value_code', 'cmf_orm_column_history', ['to_value_code'], unique=False)
    op.create_index('ix_cmf_orm_column_history_from_value_code', 'cmf_orm_column_history', ['from_value_code'], unique=False)
    # ### end Alembic commands ###
