"""empty message

Revision ID: ae694b95c73e
Revises: 53e9a273e4fa
Create Date: 2020-10-08 18:15:07.144524

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = 'ae694b95c73e'
down_revision = '53e9a273e4fa'
branch_labels = None
depends_on = None


def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.add_column('cmf_document', sa.Column('cache_status_type', sa.String(length=32), nullable=True))
    op.add_column('cmf_u_work_chat_group', sa.Column('cache_status_type', sa.String(length=32), nullable=True))
    op.add_column('cmf_u_work_chat_topic', sa.Column('cache_status_type', sa.String(length=32), nullable=True))
    op.add_column('cmf_u_work_list', sa.Column('cache_status_type', sa.String(length=32), nullable=True))
    op.add_column('cmf_u_work_post', sa.Column('cache_status_type', sa.String(length=32), nullable=True))
    op.add_column('cmf_u_work_task', sa.Column('cache_status_type', sa.String(length=32), nullable=True))
    # ### end Alembic commands ###


def downgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.drop_column('cmf_u_work_task', 'cache_status_type')
    op.drop_column('cmf_u_work_post', 'cache_status_type')
    op.drop_column('cmf_u_work_list', 'cache_status_type')
    op.drop_column('cmf_u_work_chat_topic', 'cache_status_type')
    op.drop_column('cmf_u_work_chat_group', 'cache_status_type')
    op.drop_column('cmf_document', 'cache_status_type')
    # ### end Alembic commands ###
