mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-12 00:02:36 -05:00
Update jobs archived flag before setting the default value
Running an update before setting the column default value reduces the time the table is locked (since most rows don't have a NULL value anymore), but the migration takes slightly longer to run overall.
This commit is contained in:
@@ -15,7 +15,9 @@ down_revision = '0244_another_letter_org'
|
|||||||
|
|
||||||
def upgrade():
|
def upgrade():
|
||||||
# ### commands auto generated by Alembic - please adjust! ###
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
op.add_column('jobs', sa.Column('archived', sa.Boolean(), nullable=False, server_default=sa.false()))
|
op.add_column('jobs', sa.Column('archived', sa.Boolean(), nullable=True))
|
||||||
|
op.execute('update jobs set archived = false')
|
||||||
|
op.alter_column('jobs', 'archived', nullable=False, server_default=sa.false())
|
||||||
|
|
||||||
# ### end Alembic commands ###
|
# ### end Alembic commands ###
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user