"""evatest

Revision ID: f189576c8f5e
Revises: 604c4a6302be
Create Date: 2024-12-24 14:50:35.738347

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = 'f189576c8f5e'
down_revision = '604c4a6302be'
branch_labels = None
depends_on = None


def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.add_column('cmf_testplan_testcase', sa.Column('responsible_id', sa.String(length=64), nullable=True))
    op.create_index(op.f('ix_cmf_testplan_testcase_responsible_id'), 'cmf_testplan_testcase', ['responsible_id'], unique=False)
    # ### end Alembic commands ###


def downgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.drop_index(op.f('ix_cmf_testplan_testcase_responsible_id'), table_name='cmf_testplan_testcase')
    op.drop_column('cmf_testplan_testcase', 'responsible_id')
    # ### end Alembic commands ###
