12 lines
495 B
Python
12 lines
495 B
Python
from django.db import models
|
|
from django.conf import settings
|
|
|
|
class PolarSubscription(models.Model):
|
|
user = models.OneToOneField(settings.AUTH_USER_MODEL, on_delete=models.CASCADE)
|
|
subscription_id = models.CharField(max_length=255, unique=True)
|
|
status = models.CharField(max_length=50)
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
expires_at = models.DateTimeField(null=True, blank=True)
|
|
|
|
def __str__(self):
|
|
return f"{self.user.username} - {self.status}" |