mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-22 09:38:18 +00:00
7 lines
259 B
Python
Executable File
7 lines
259 B
Python
Executable File
from spa.models import _BaseModel, 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) |