project/scipycon/base/models.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Wed, 14 Jul 2010 19:34:12 +0530
changeset 101 61fc4aa7a09a
child 104 1a83a26756c3
permissions -rw-r--r--
Added base app from which all other apps inherit and made corresponding changes in other apps.

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)