Skip to content

Commit

Permalink
default_server="null"
Browse files Browse the repository at this point in the history
  • Loading branch information
ychiucco committed Jan 14, 2025
1 parent db1fee2 commit 6dc89f4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def upgrade() -> None:
"filters",
existing_type=postgresql.JSON(astext_type=sa.Text()),
nullable=True,
server_default=None,
server_default="null",
)

with op.batch_alter_table("jobv2", schema=None) as batch_op:
Expand All @@ -59,7 +59,7 @@ def upgrade() -> None:
"input_filters",
existing_type=postgresql.JSON(astext_type=sa.Text()),
nullable=True,
server_default=None,
server_default="null",
)

# ### end Alembic commands ###
Expand Down

0 comments on commit 6dc89f4

Please sign in to comment.