"""add_show_cycle

Revision ID: 829c9b58126d
Revises: a542d0edad78
Create Date: 2024-03-28 09:36:33.687024

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = '829c9b58126d'
down_revision = 'a542d0edad78'
branch_labels = None
depends_on = None


def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.add_column('cmf_s_desk_sla_cycle', sa.Column('show_cycle', sa.Boolean(), nullable=False, server_default='true'))
    # ### end Alembic commands ###


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