"""security levels

Revision ID: 5129f2d4aa64
Revises: 1b4e474dd505
Create Date: 2023-07-11 19:44:23.219290

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = '5129f2d4aa64'
down_revision = '1b4e474dd505'
branch_labels = None
depends_on = None


def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.add_column('cmf_security_level', sa.Column('access_task_fields', sa.TEXT(), nullable=True))
    # ### end Alembic commands ###


def downgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.drop_column('cmf_security_level', 'access_task_fields')
    # ### end Alembic commands ###
