-
Notifications
You must be signed in to change notification settings - Fork 788
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "[BugFix] Make leaderboardata is disabled nullable" (#4212)
* Revert "[Backend] Make leaderboardata is disabled nullable (#4210)" This reverts commit 542caa0. * Add the alter migrations * Fix missing return
- Loading branch information
1 parent
0bab4f3
commit 403ebfe
Showing
5 changed files
with
23 additions
and
13 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
apps/challenges/migrations/0109_alter_leaderboarddata_is_disabled.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 2.2.20 on 2023-11-08 17:36 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('challenges', '0108_alter_leaderboarddata_is_disabled_null'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='leaderboarddata', | ||
name='is_disabled', | ||
field=models.BooleanField(default=False), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters