"""cmfnotify

Revision ID: f0cd79290824
Revises: c76ec973ad58
Create Date: 2022-02-08 13:15:50.057081

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = 'f0cd79290824'
down_revision = 'c76ec973ad58'
branch_labels = None
depends_on = None


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


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