diff options
Diffstat (limited to 'project/scipycon/registration/models.py')
-rw-r--r-- | project/scipycon/registration/models.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/project/scipycon/registration/models.py b/project/scipycon/registration/models.py index 649145e..2f9908c 100644 --- a/project/scipycon/registration/models.py +++ b/project/scipycon/registration/models.py @@ -131,6 +131,9 @@ class Payment(base_models.ScopedBase): confirmed = models.BooleanField( default=False, blank=True) + + acco_confirmed = models.BooleanField( + default=False, blank=True) type = models.CharField(max_length=25, choices=PAYMENT_MODE_CHOICES, verbose_name="Type", blank=True, null=True) |