summaryrefslogtreecommitdiff
path: root/project/scipycon/base/models.py
blob: 66375310570dd7d0c11a59fdd57162dbe9c65193 (plain)
1
2
3
4
5
6
7
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)