Moved missing migtations to end of run

This commit is contained in:
Martyn Inglis
2016-02-25 15:58:01 +00:00
parent abb46e0a9f
commit 1be003cffb
2 changed files with 8 additions and 8 deletions

View File

@@ -0,0 +1,26 @@
"""empty message
Revision ID: 0026_add_sender
Revises: 0025_add_processing_dates
Create Date: 2016-02-24 17:18:21.942772
"""
# revision identifiers, used by Alembic.
revision = '0026_add_sender'
down_revision = '0025_add_processing_dates'
from alembic import op
import sqlalchemy as sa
def upgrade():
### commands auto generated by Alembic - please adjust! ###
op.add_column('notifications', sa.Column('sent_by', sa.String(), nullable=True))
### end Alembic commands ###
def downgrade():
### commands auto generated by Alembic - please adjust! ###
op.drop_column('notifications', 'sent_by')
### end Alembic commands ###