From c6dd0ff2863f45edb722c13475382b4450f4aecb Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Fri, 24 Feb 2023 07:20:31 +0000 Subject: [PATCH] Remove new ID field --- core/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/models.py b/core/models.py index 602c04b..17fdd6c 100644 --- a/core/models.py +++ b/core/models.py @@ -93,9 +93,9 @@ ADJUST_CLOSE_NOTIFY_CHOICES = ( class User(AbstractUser): # Stripe customer ID - unique_id = models.UUIDField( - default=uuid.uuid4, - ) + # unique_id = models.UUIDField( + # default=uuid.uuid4, + # ) # stripe_id = models.CharField(max_length=255, null=True, blank=True) billing_provider_id = models.CharField(max_length=255, null=True, blank=True) # last_payment = models.DateTimeField(null=True, blank=True)