Manage ASL magazines and their articles.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
asl-articles/alembic/versions/41cfc117c809_added_publicat...

28 lines
686 B

"""Added publication dates.
Revision ID: 41cfc117c809
Revises: 064497c51f2d
Create Date: 2020-01-31 15:02:57.126183
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '41cfc117c809'
down_revision = '064497c51f2d'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.add_column('publication', sa.Column('pub_date', sa.String(length=100), nullable=True))
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column('publication', 'pub_date')
# ### end Alembic commands ###