"""message status

Revision ID: b5cd0882d747
Revises: 2d537fb9dad4
Create Date: 2021-04-14 14:37:38.470528

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = 'b5cd0882d747'
down_revision = ('2d537fb9dad4', '9765261a4e04')
branch_labels = None
depends_on = None


def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    op.add_column('cmf_channel_message', sa.Column('message_status', sa.String(length=32), nullable=True))
    # ### end Alembic commands ###


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