mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-27 20:18:07 +00:00
9 lines
305 B
Python
Executable File
9 lines
305 B
Python
Executable File
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) |