Files
dss/spa/models/label.py
Fergal Moran 50c9e4e8c1 Removed userfollows model and changed to ForeignKey properties in UserProfile
Migrations got a bit borked so doing this commit to stage the migrations in live as I don't want to have a massive, potentially dangerous, migration.
2013-04-30 23:26:42 +01:00

11 lines
249 B
Python

from django.db import models
from spa.models._basemodel import _BaseModel
class Label(_BaseModel):
class Meta:
app_label = 'spa'
name = models.CharField(max_length=100)
def __unicode__(self):
return self.name