From a6fae5541afdc80dd8442bd6b84f8b5b5989482d Mon Sep 17 00:00:00 2001 From: Laurent Date: Wed, 22 May 2024 15:53:34 +0200 Subject: [PATCH] refactor variable names to match app --- tournaments/models/tournament.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tournaments/models/tournament.py b/tournaments/models/tournament.py index 2fc8eea..f3719e4 100644 --- a/tournaments/models/tournament.py +++ b/tournaments/models/tournament.py @@ -43,9 +43,9 @@ class Tournament(models.Model): qualified_per_group_stage = models.IntegerField(default=0) teams_per_group_stage = models.IntegerField(default=0) entry_fee = models.FloatField(default=20.0, null=True, blank=True) - payment = models.CharField(max_length=100, null=True, blank=True) + globalId = models.CharField(max_length=100, null=True, blank=True) #represent the payment crypted string is_deleted = models.BooleanField(default=False) - is_canceled = models.CharField(max_length=100, null=True, blank=True) + localId = models.CharField(max_length=100, null=True, blank=True) #represent the is_canceled crypted string additional_estimation_duration = models.IntegerField(default=0) publish_teams = models.BooleanField(default=False) publish_summons = models.BooleanField(default=False)