mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-02 09:26:08 -05:00
Added job row number to the notification for csv jobs. All tests passing.
This commit is contained in:
26
migrations/versions/0019_add_job_row_number.py
Normal file
26
migrations/versions/0019_add_job_row_number.py
Normal 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 ###
|
||||
Reference in New Issue
Block a user