Add the initial RegisteredUser class, remove standard Django apps

This commit is contained in:
Bradlee Speice
2013-10-09 21:37:12 -04:00
parent 74fd422dfc
commit f92f830110
2 changed files with 13 additions and 6 deletions

View File

@ -1,3 +1,10 @@
from django.db import models
# Create your models here.
class RegisteredUser(models.Model):
date_registered = models.DateTimeField()
first_name = models.CharField(max_length=64)
last_name = models.CharField(max_length=64)
section = models.CharField(max_length=8)
row = models.IntegerField()