mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-27 03:57:43 +00:00
6 lines
189 B
Python
Executable File
6 lines
189 B
Python
Executable File
from spa.models import _BaseModel, UserProfile, Mix, _Activity
|
|
from django.db import models
|
|
|
|
class MixFavourite(_Activity):
|
|
mix = models.ForeignKey(Mix, related_name='favourites')
|