diff options
author | prathamesh | 2014-06-09 10:30:22 +0530 |
---|---|---|
committer | prathamesh | 2014-06-09 10:30:22 +0530 |
commit | 5adb38569bec47ea0a1ea63e22ceec8906717b04 (patch) | |
tree | af75e47255f39402c79ded6f75399a47084584ff /testapp/myauthentication/models_spoken_tutorial.py | |
parent | 7d0753f2e0f590ed4376fdb5f8abaace7c4cfc19 (diff) | |
parent | e50eb8426d5f22fd35a2575cd3f4617226bc1a01 (diff) | |
download | online_test-5adb38569bec47ea0a1ea63e22ceec8906717b04.tar.gz online_test-5adb38569bec47ea0a1ea63e22ceec8906717b04.tar.bz2 online_test-5adb38569bec47ea0a1ea63e22ceec8906717b04.zip |
Merge branch 'master' of https://github.com/FOSSEE/online_test
Diffstat (limited to 'testapp/myauthentication/models_spoken_tutorial.py')
-rw-r--r-- | testapp/myauthentication/models_spoken_tutorial.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testapp/myauthentication/models_spoken_tutorial.py b/testapp/myauthentication/models_spoken_tutorial.py new file mode 100644 index 0000000..d333400 --- /dev/null +++ b/testapp/myauthentication/models_spoken_tutorial.py @@ -0,0 +1,26 @@ +# 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' |