"""empty message Revision ID: 3d9a20b8b26c Revises: 421ba4373e50 Create Date: 2020-05-14 09:30:56.266381 """ from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision = '3d9a20b8b26c' down_revision = '421ba4373e50' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.add_column('notification_email_data', sa.Column('notify_status', sa.String(length=16), nullable=True)) # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### op.drop_column('notification_email_data', 'notify_status') # ### end Alembic commands ###