Files
keywarden/app/apps/accounts/models.py
2025-11-11 09:42:50 +00:00

8 lines
239 B
Python

from django.db import models
class Account(models.Model):
firstname = models.CharField(max_length=255)
lastname = models.CharField(max_length=255)
email = models.CharField(max_length=255)
joined_date = models.DateField(null=True)