Files
dss/spa/models/__init__.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

19 lines
561 B
Python

from _basemodel import _BaseModel
from userprofile import UserProfile
from chatmessage import ChatMessage
from recurrence import Recurrence
from comment import Comment
from venue import Venue
from event import Event
from label import Label
from mix import Mix
from activity import _Activity
from mixlike import MixLike
from mixplay import MixPlay
from mixfavourite import MixFavourite
from mixdownload import MixDownload
from genre import Genre
from tracklist import Tracklist
from purchaselink import PurchaseLink
from release import Release