"""incompatible_combination_code

Revision ID: 5679bb128ea2
Revises: 158d67ee5de8
Create Date: 2023-01-17 17:45:26.410328

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = '5679bb128ea2'
down_revision = '158d67ee5de8'
branch_labels = None
depends_on = None


def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.add_column('cmf_org_unit', sa.Column('incompatible_combination_code', sa.String(), nullable=True))
    op.add_column('cmf_person_group', sa.Column('incompatible_combination_code', sa.String(), nullable=True))
    op.add_column('cmf_role', sa.Column('incompatible_combination_code', sa.String(), nullable=True))
    # ### end Alembic commands ###


def downgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.drop_column('cmf_role', 'incompatible_combination_code')
    op.drop_column('cmf_person_group', 'incompatible_combination_code')
    op.drop_column('cmf_org_unit', 'incompatible_combination_code')
    # ### end Alembic commands ###
