diff --git a/tournaments/migrations/0047_rename_publish_groupstages_tournament_publish_group_stages.py b/tournaments/migrations/0047_rename_publish_groupstages_tournament_publish_group_stages.py new file mode 100644 index 0000000..ae9813a --- /dev/null +++ b/tournaments/migrations/0047_rename_publish_groupstages_tournament_publish_group_stages.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.11 on 2024-05-15 21:10 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('tournaments', '0046_tournament_publish_brackets_and_more'), + ] + + operations = [ + migrations.RenameField( + model_name='tournament', + old_name='publish_groupStages', + new_name='publish_group_stages', + ), + ] diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index 044374d..4e53b29 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -39,7 +39,7 @@ class Tournament(models.Model): additional_estimation_duration = models.IntegerField(default=0) publish_teams = models.BooleanField(default=False) publish_summons = models.BooleanField(default=False) - publish_groupStages = models.BooleanField(default=False) + publish_group_stages = models.BooleanField(default=False) publish_brackets = models.BooleanField(default=False) def __str__(self):