diff --git a/uncc_gameday/gameday/models.py b/uncc_gameday/gameday/models.py index 71a8362..21a4b71 100755 --- a/uncc_gameday/gameday/models.py +++ b/uncc_gameday/gameday/models.py @@ -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() \ No newline at end of file diff --git a/uncc_gameday/uncc_gameday/settings.py b/uncc_gameday/uncc_gameday/settings.py index 9b83bb3..2e352ef 100755 --- a/uncc_gameday/uncc_gameday/settings.py +++ b/uncc_gameday/uncc_gameday/settings.py @@ -114,12 +114,12 @@ TEMPLATE_DIRS = ( ) INSTALLED_APPS = ( - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.sites', - 'django.contrib.messages', - 'django.contrib.staticfiles', + #'django.contrib.auth', + #'django.contrib.contenttypes', + #'django.contrib.sessions', + #'django.contrib.sites', + #'django.contrib.messages', + #'django.contrib.staticfiles', # Uncomment the next line to enable the admin: # 'django.contrib.admin', # Uncomment the next line to enable admin documentation: