Attempt to fix migrations

This commit is contained in:
2023-02-24 07:20:31 +00:00
parent fb5521c9f7
commit 86ace02de8
3 changed files with 2 additions and 57 deletions

View File

@@ -93,8 +93,8 @@ ADJUST_CLOSE_NOTIFY_CHOICES = (
class User(AbstractUser):
# Stripe customer ID
id = models.UUIDField(
default=uuid.uuid4, primary_key=True, editable=False, unique=True
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)