Remove new ID field
This commit is contained in:
parent
86ace02de8
commit
c6dd0ff286
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue