From f92f830110944b6af51e840c257209bc8f9b9595 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Wed, 9 Oct 2013 21:37:12 -0400 Subject: [PATCH] Add the initial RegisteredUser class, remove standard Django apps --- uncc_gameday/gameday/models.py | 7 +++++++ uncc_gameday/uncc_gameday/settings.py | 12 ++++++------ 2 files changed, 13 insertions(+), 6 deletions(-) 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: