mirror of
https://github.com/fergalmoran/dss.git
synced 2026-02-11 10:33:58 +00:00
9 lines
235 B
Python
9 lines
235 B
Python
from django.db import models
|
|
from spa.models.Mix import Mix
|
|
from spa.models._Activity import _Activity
|
|
|
|
class MixLike(_Activity):
|
|
class Meta:
|
|
app_label = 'spa'
|
|
|
|
mix = models.ForeignKey(Mix, related_name='likes') |