Skip to content

Commit

Permalink
fix migration manually
Browse files Browse the repository at this point in the history
  • Loading branch information
jennmueng committed Sep 6, 2024
1 parent f0bf12d commit 9793943
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/migrations/versions/da0a9c9f1bb4_migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table("run_state", schema=None) as batch_op:
batch_op.add_column(sa.Column("type", sa.String(), nullable=False))
batch_op.add_column(
sa.Column("type", sa.String(), nullable=False, server_default="autofix")
)

# ### end Alembic commands ###

Expand Down

0 comments on commit 9793943

Please sign in to comment.