class Song(ContentBase): rating = peewee.CharField(null=True) genre = peewee.CharField(null=True) year = peewee.CharField(null=True) path = peewee.CharField(unique=True) duration = peewee.FloatField(default=0)
class Trivia(ContentBase): type = peewee.CharField() TID = peewee.CharField(unique=True) rating = peewee.CharField(null=True) genre = peewee.CharField(null=True) year = peewee.CharField(null=True) duration = peewee.FloatField(default=0) questionPath = peewee.CharField(unique=True, null=True) cluePath0 = peewee.CharField(unique=True, null=True) cluePath1 = peewee.CharField(unique=True, null=True) cluePath2 = peewee.CharField(unique=True, null=True) cluePath3 = peewee.CharField(unique=True, null=True) cluePath4 = peewee.CharField(unique=True, null=True) cluePath5 = peewee.CharField(unique=True, null=True) cluePath6 = peewee.CharField(unique=True, null=True) cluePath7 = peewee.CharField(unique=True, null=True) cluePath8 = peewee.CharField(unique=True, null=True) cluePath9 = peewee.CharField(unique=True, null=True) answerPath = peewee.CharField(unique=True, null=True)