project/scipycon/base/models.py
changeset 101 61fc4aa7a09a
child 104 1a83a26756c3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/project/scipycon/base/models.py	Wed Jul 14 19:34:12 2010 +0530
@@ -0,0 +1,8 @@
+from django.db import models
+
+
+class Base(models.Model):
+    """Base model which is in turn inherited by other models. 
+    """
+    
+    scope = models.CharField(max_length=255)