Skip to content

Commit

Permalink
precommit
Browse files Browse the repository at this point in the history
  • Loading branch information
flaree committed Feb 19, 2025
1 parent 83f34b9 commit 6fffc1e
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,18 @@
class Migration(migrations.Migration):

dependencies = [
('bd_models', '0005_alter_ball_short_name'),
("bd_models", "0005_alter_ball_short_name"),
]

operations = [
migrations.AddField(
model_name='player',
name='trade_cooldown_policy',
field=models.SmallIntegerField(choices=[(1, 'Cooldown'), (2, 'Bypass')], default=1, help_text='To bypass or not the trade cooldown'),
model_name="player",
name="trade_cooldown_policy",
field=models.SmallIntegerField(
choices=[(1, "Cooldown"), (2, "Bypass")],
default=1,
help_text="To bypass or not the trade cooldown",
),
preserve_default=False,
),
]

0 comments on commit 6fffc1e

Please sign in to comment.