summaryrefslogtreecommitdiff
path: root/stapp/video
diff options
context:
space:
mode:
authorParth Buch2012-06-18 16:49:49 +0530
committerParth Buch2012-06-18 16:49:49 +0530
commitb52f44e4ece9b979ec383bb617990cac87b4e466 (patch)
tree57584e986981afdbeb53a1318051a286141b2f42 /stapp/video
parentbbb7ca69397b92fe958218471237b9047d82dfde (diff)
downloadstproject-b52f44e4ece9b979ec383bb617990cac87b4e466.tar.gz
stproject-b52f44e4ece9b979ec383bb617990cac87b4e466.tar.bz2
stproject-b52f44e4ece9b979ec383bb617990cac87b4e466.zip
Removing the Profile Model from video/models.py as we have a different app for that
Diffstat (limited to 'stapp/video')
-rw-r--r--stapp/video/models.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/stapp/video/models.py b/stapp/video/models.py
index b7122b1..c7b0786 100644
--- a/stapp/video/models.py
+++ b/stapp/video/models.py
@@ -17,10 +17,3 @@ class Module(models.Model):
def __unicode__(self):
return self.name
-class Profile(models.Model):
- """User Profile describes data/information about regirstered user."""
- user = models.OneToOneField(User)
- roll_number = models.CharField(max_length=20)
- institute = models.CharField(max_length=128)
- department = models.CharField(max_length=64)
- position = models.CharField(max_length=64)