Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kessler-frost committed Sep 19, 2023
1 parent e18d299 commit 0dd2f42
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ def upgrade() -> None:

with op.batch_alter_table("electrons", schema=None) as batch_op:
batch_op.add_column(
sa.Column("qelectron_data_exists", sa.Boolean(), nullable=False, default=False)
sa.Column(
"qelectron_data_exists", sa.Boolean(), nullable=False, server_default=sa.false()
)
)

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

0 comments on commit 0dd2f42

Please sign in to comment.