mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 08:23:00 +08:00
28 lines
678 B
Python
28 lines
678 B
Python
"""added job backoff 2
|
|
|
|
Revision ID: 4ffe195e61c1
|
|
Revises: 6980f5818a73
|
|
Create Date: 2023-05-25 09:27:55.762476
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '4ffe195e61c1'
|
|
down_revision = '6980f5818a73'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.add_column('job', sa.Column('retries', sa.Integer(), nullable=True))
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_column('job', 'retries')
|
|
# ### end Alembic commands ###
|