Files
dss.api/spa/models/purchaselink.py
Fergal Moran 6f9f29f5fc Initial commit
2015-04-30 23:17:58 +01:00

9 lines
302 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)