Skip to content

Commit

Permalink
Temporarily setting winning_score as nullable (#138)
Browse files Browse the repository at this point in the history
<!--- Please write your PR name in the present imperative tense.
Examples of that tense are: "Fix issue in the dispatcher where…",
"Improve our handling of…", etc." -->
<!-- For more information on Pull Requests, you can reference here:
https://success.vanillaforums.com/kb/articles/228-using-pull-requests-to-contribute
-->
## Describe Your Changes

Temporarily setting `winning_score` as nullable

## Non-Obvious Technical Information


## Checklist Before Requesting a Review
- [x] The code runs successfully.

---------

Co-authored-by: Ari Anisfeld <ari.anisfeld@gmail.com>
  • Loading branch information
FedericoDM and anisfeld authored Jan 9, 2024
1 parent 77c7dad commit cbe025f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.add_column(
"games", sa.Column("winning_score", sa.Integer(), nullable=False)
"games", sa.Column("winning_score", sa.Integer(), nullable=True)
)
# ### end Alembic commands ###

Expand Down

0 comments on commit cbe025f

Please sign in to comment.