mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
29 lines
674 B
Python
29 lines
674 B
Python
"""empty message
|
|
|
|
Revision ID: 7378391345fa
|
|
Revises: 6227310c2112
|
|
Create Date: 2020-02-17 12:29:17.851954
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '7378391345fa'
|
|
down_revision = '6227310c2112'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.add_column('jobs', sa.Column('secure_filename', sa.String(length=32), nullable=True))
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_column('jobs', 'secure_filename')
|
|
# ### end Alembic commands ###
|