Added job row number to the notification for csv jobs. All tests passing.

This commit is contained in:
Nicholas Staples
2016-05-19 10:46:03 +01:00
parent a606f2c97e
commit 0fe0c1d2b4
8 changed files with 81 additions and 15 deletions

View File

@@ -0,0 +1,26 @@
"""empty message
Revision ID: 0019_add_job_row_number
Revises: 0018_remove_subject_uniqueness
Create Date: 2016-05-18 15:04:24.513071
"""
# revision identifiers, used by Alembic.
revision = '0019_add_job_row_number'
down_revision = '0018_remove_subject_uniqueness'
from alembic import op
import sqlalchemy as sa
def upgrade():
### commands auto generated by Alembic - please adjust! ###
op.add_column('notifications', sa.Column('job_row_number', sa.Integer(), nullable=True))
### end Alembic commands ###
def downgrade():
### commands auto generated by Alembic - please adjust! ###
op.drop_column('notifications', 'job_row_number')
### end Alembic commands ###