10 lines
376 B
Python
10 lines
376 B
Python
class VGames(CommonMediaFields)
|
|
tgdb_id = models.PositiveIntegerField('TheGamesDB ID')
|
|
platform = models.ForeignKey('Platform')
|
|
developer = models.CharField('Developers')
|
|
publisher = models.CharField('Publishers')
|
|
cover = models.ImageField('Cover Image')
|
|
players = models.PositiveIntegerField('Players')
|
|
coop = models.BooleanField('Co-Op')
|
|
|