mirror of
https://github.com/fergalmoran/dss.api.git
synced 2025-12-22 09:18:13 +00:00
9 lines
302 B
Python
9 lines
302 B
Python
from spa.models.basemodel import BaseModel
|
|
from spa.models.tracklist import Tracklist
|
|
|
|
from django.db import models
|
|
|
|
class PurchaseLink(BaseModel):
|
|
track = models.ForeignKey(Tracklist, related_name='purchase_link')
|
|
url = models.URLField()
|
|
provider = models.CharField(max_length=255) |