mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-26 03:27:33 +00:00
13 lines
486 B
Python
Executable File
13 lines
486 B
Python
Executable File
from spa.models import _BaseModel, Mix
|
|
from django.db import models
|
|
|
|
class Tracklist(_BaseModel):
|
|
mix = models.ForeignKey(Mix, related_name='tracklist')
|
|
index = models.SmallIntegerField()
|
|
timeindex = models.TimeField(null=True)
|
|
description = models.CharField(max_length=255)
|
|
artist = models.CharField(max_length=255)
|
|
title = models.CharField(max_length=255)
|
|
remixer = models.CharField(max_length=255)
|
|
label = models.CharField(max_length=255)
|