Created accounts model
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
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)
|
||||
|
||||
Reference in New Issue
Block a user