"""change_ft_priority_nullable

Revision ID: 1e655fe9f1e3
Revises: abdb31eaa7b5
Create Date: 2022-10-26 12:12:28.785771

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = '1e655fe9f1e3'
down_revision = 'abdb31eaa7b5'
branch_labels = None
depends_on = None


def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.alter_column('cmf_task_filter', 'ft_priority',
               existing_type=sa.INTEGER(),
               nullable=True)
    # ### end Alembic commands ###


def downgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.alter_column('cmf_task_filter', 'ft_priority',
               existing_type=sa.INTEGER(),
               nullable=False)
    # ### end Alembic commands ###
