mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
29 lines
708 B
Python
29 lines
708 B
Python
"""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 ###
|