From 576270241f3f941fb0ff205d6a309a1665f124b7 Mon Sep 17 00:00:00 2001 From: Rosalina Date: Sat, 13 Jul 2024 21:19:32 -0400 Subject: [PATCH] oops --- ...alter_battle_splatfest_clout_multiplier.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 battles/migrations/0030_alter_battle_splatfest_clout_multiplier.py diff --git a/battles/migrations/0030_alter_battle_splatfest_clout_multiplier.py b/battles/migrations/0030_alter_battle_splatfest_clout_multiplier.py new file mode 100644 index 00000000..af07ddc2 --- /dev/null +++ b/battles/migrations/0030_alter_battle_splatfest_clout_multiplier.py @@ -0,0 +1,20 @@ +# Generated by Django 5.0.7 on 2024-07-14 01:19 + +import battles.models +import django_choices_field.fields +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('battles', '0029_battle_statink_id_battle_statink_username'), + ] + + operations = [ + migrations.AlterField( + model_name='battle', + name='splatfest_clout_multiplier', + field=django_choices_field.fields.TextChoicesField(blank=True, choices=[('NONE', '1x'), ('DECUPLE', '10x'), ('DRAGON', '100x'), ('DOUBLE_DRAGON', '333x'), ('CONCH_SHELL_SCRAMBLE', 'Conch Clash'), ('CONCH_SHELL_SCRAMBLE_10', '10x Conch Clash'), ('CONCH_SHELL_SCRAMBLE_33', '33x Conch Clash')], choices_enum=battles.models.Battle.SplatfestBattleCloutMultiplier, max_length=23, null=True), + ), + ]