8 lines
239 B
Python
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)
|