mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-07 09:26:18 +00:00
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.
19 lines
561 B
Python
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
|