From f27be4f3dc3ea4efa3cb81c89277671c2fee189b Mon Sep 17 00:00:00 2001 From: eileen914 Date: Thu, 18 Dec 2025 21:11:48 +0900 Subject: [PATCH] fix: fixed growthtimeline connection --- apps/items/models.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/items/models.py b/apps/items/models.py index 7a61e1f..0deebd3 100644 --- a/apps/items/models.py +++ b/apps/items/models.py @@ -13,12 +13,12 @@ class Rarity(models.IntegerChoices): LEGENDARY = 5, 'Legendary' class Maturity(models.IntegerChoices): - HATCHLING = 0, 'Hatchling' - JUVENILE = 1, 'Juvenile' - YOUNGLING = 2, 'Youngling' - ADULT = 3, 'Adult' - ADVANCED = 4, 'Advanced' - MASTER = 5, 'Master' + HATCHLING = 1, 'Hatchling' + JUVENILE = 2, 'Juvenile' + YOUNGLING = 3, 'Youngling' + ADULT = 4, 'Adult' + ADVANCED = 5, 'Advanced' + MASTER = 6, 'Master' name = models.CharField( max_length=100, @@ -33,7 +33,7 @@ class Maturity(models.IntegerChoices): ) maturity = models.IntegerField( choices=Maturity.choices, - default=Maturity.HATCHLING, + default=Maturity.HATCHLING, # 1 help_text="The evolution stage of the fish." ) required_commits = models.PositiveIntegerField(