summaryrefslogtreecommitdiff
path: root/testapp/myauthentication/models_spoken_tutorial.py
diff options
context:
space:
mode:
authorPrabhu Ramachandran2015-09-29 13:45:06 +0530
committerPrabhu Ramachandran2015-09-29 13:45:06 +0530
commitebbf135af98720f1979cd28a9108817bac385ce7 (patch)
treee812ac5466ad043f867c58bc363df823522a8468 /testapp/myauthentication/models_spoken_tutorial.py
parent31f5e743031d105b0406e9587dc33bb065cd6e4d (diff)
parent53be4bc2ec40a9a84ff5ea73db2fbea0a07f5338 (diff)
downloadonline_test-ebbf135af98720f1979cd28a9108817bac385ce7.tar.gz
online_test-ebbf135af98720f1979cd28a9108817bac385ce7.tar.bz2
online_test-ebbf135af98720f1979cd28a9108817bac385ce7.zip
Merge pull request #56 from ankitjavalkar/examtime
Start and Expiry times for Quizzes
Diffstat (limited to 'testapp/myauthentication/models_spoken_tutorial.py')
-rw-r--r--testapp/myauthentication/models_spoken_tutorial.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/testapp/myauthentication/models_spoken_tutorial.py b/testapp/myauthentication/models_spoken_tutorial.py
deleted file mode 100644
index d333400..0000000
--- a/testapp/myauthentication/models_spoken_tutorial.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# This is an auto-generated Django model module.
-# You'll have to do the following manually to clean this up:
-# * Rearrange models' order
-# * Make sure each model has one field with primary_key=True
-# Feel free to rename the models, but don't rename db_table values or field names.
-#
-# Also note: You'll have to insert the output of 'django-admin.py sqlcustom [appname]'
-# into your database.
-
-from django.db import models
-
-class MoodleUser(models.Model):
- id = models.BigIntegerField(primary_key=True)
- username = models.CharField(unique=True, max_length=300)
- password = models.CharField(max_length=96)
- idnumber = models.CharField(max_length=765)
- firstname = models.CharField(max_length=300)
- lastname = models.CharField(max_length=300)
- email = models.CharField(max_length=300)
- institution = models.CharField(max_length=120)
- department = models.CharField(max_length=90)
- address = models.CharField(max_length=210)
- city = models.CharField(max_length=360)
- country = models.CharField(max_length=6)
- class Meta:
- db_table = u'mdl_user'