2016-05-19 10:46:03 +01:00
|
|
|
"""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.
|
2023-08-29 14:54:30 -07:00
|
|
|
revision = "0019_add_job_row_number"
|
|
|
|
|
down_revision = "0018_remove_subject_uniqueness"
|
2016-05-19 10:46:03 +01:00
|
|
|
|
|
|
|
|
import sqlalchemy as sa
|
2023-12-08 21:43:52 -05:00
|
|
|
from alembic import op
|
2016-05-19 10:46:03 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def upgrade():
|
|
|
|
|
### commands auto generated by Alembic - please adjust! ###
|
2023-08-29 14:54:30 -07:00
|
|
|
op.add_column(
|
|
|
|
|
"notifications", sa.Column("job_row_number", sa.Integer(), nullable=True)
|
|
|
|
|
)
|
2016-05-19 10:46:03 +01:00
|
|
|
### end Alembic commands ###
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def downgrade():
|
|
|
|
|
### commands auto generated by Alembic - please adjust! ###
|
2023-08-29 14:54:30 -07:00
|
|
|
op.drop_column("notifications", "job_row_number")
|
2016-05-19 10:46:03 +01:00
|
|
|
### end Alembic commands ###
|