Stat info for current episode.

This commit is contained in:
luxick
2018-02-27 20:54:10 +01:00
parent 1e4e319ecc
commit 5631718969
7 changed files with 397 additions and 129 deletions

View File

@@ -75,9 +75,9 @@ class Death(Model):
class Penalty(Model):
id = AutoField()
size = DecimalField()
ForeignKeyField(Drink)
ForeignKeyField(Player, backref='penalties')
ForeignKeyField(Death, backref='penalties')
drink = ForeignKeyField(Drink)
player = ForeignKeyField(Player, backref='penalties')
death = ForeignKeyField(Death, backref='penalties')
class Meta:
database = db