mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-10-09 20:55:06 +02:00
hotfix: sqlalchemy default -> server_default (#2442)
Co-authored-by: danswer-trial <danswer-trial@danswer-trials-MacBook-Pro.local>
This commit is contained in:
@@ -19,7 +19,9 @@ def upgrade() -> None:
|
|||||||
# ### commands auto generated by Alembic - please adjust! ###
|
# ### commands auto generated by Alembic - please adjust! ###
|
||||||
op.add_column(
|
op.add_column(
|
||||||
"standard_answer",
|
"standard_answer",
|
||||||
sa.Column("match_regex", sa.Boolean(), nullable=False, default=False),
|
sa.Column(
|
||||||
|
"match_regex", sa.Boolean(), nullable=False, server_default=sa.false()
|
||||||
|
),
|
||||||
)
|
)
|
||||||
# ### end Alembic commands ###
|
# ### end Alembic commands ###
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user