Files
dss/spa/models/PurchaseLink.py
2012-09-20 17:13:51 +01:00

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)