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 531c1b4 commit 3c31acd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ name: nightly

on:
schedule:
- cron: "0 */4 * * *"
- cron: "0 4 * * *"

jobs:
license:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ def upgrade() -> None:
batch_op.create_foreign_key("electron_link", "electrons", ["parent_electron_id"], ["id"])

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

# ### end Alembic commands ###

Expand Down

0 comments on commit 3c31acd

Please sign in to comment.