fossasia/open-event-orga-server

View on GitHub
migrations/versions/0e5940f5bf43_.py

Summary

Maintainability
A
3 hrs
Test Coverage
"""empty message

Revision ID: 0e5940f5bf43
Revises: 884774042071
Create Date: 2016-06-27 13:46:18.345458

"""

# revision identifiers, used by Alembic.
revision = '0e5940f5bf43'
down_revision = '884774042071'

from alembic import op
import sqlalchemy as sa
import sqlalchemy_utils


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


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