diff --git a/CommonCore/SQL/src/de/steamwar/sql/PersonalKit.kt b/CommonCore/SQL/src/de/steamwar/sql/PersonalKit.kt index 5e369415..cbe97fd7 100644 --- a/CommonCore/SQL/src/de/steamwar/sql/PersonalKit.kt +++ b/CommonCore/SQL/src/de/steamwar/sql/PersonalKit.kt @@ -37,6 +37,8 @@ object PersonalKitTable: CompositeIdTable("PersonalKit") { val armor = text("Armor") val inUse = bool("InUse") + override val primaryKey = PrimaryKey(userId, gamemode, kitName) + init { addIdColumn(userId) }