Fix and reenable game support

This commit is contained in:
rubenwardy
2022-06-24 23:18:00 +01:00
parent 4adb209894
commit f22911b4a0
4 changed files with 25 additions and 14 deletions

View File

@@ -358,9 +358,10 @@ class PackageGameSupport(db.Model):
__table_args__ = (db.UniqueConstraint("game_id", "package_id", name="_package_game_support_uc"),)
def __init__(self, package, game):
def __init__(self, package, game, confidence):
self.package = package
self.game = game
self.confidence = confidence
class Package(db.Model):