mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-26 19:47:32 +00:00
14 lines
524 B
Python
Executable File
14 lines
524 B
Python
Executable File
from spa.models.mix import Mix
|
|
from spa.models._basemodel import _BaseModel
|
|
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)
|