Add ID column initialization for BauweltMember
All checks were successful
SteamWarCI Build successful

Signed-off-by: Chaoscaot <max@maxsp.de>
This commit is contained in:
2025-11-10 11:09:57 +01:00
parent ebb375d8d6
commit 133ddb39cc

View File

@@ -39,6 +39,11 @@ object BauweltMemberTable: CompositeIdTable("BauweltMember") {
val world = bool("World")
override val primaryKey = PrimaryKey(bauweltId, memberId)
init {
addIdColumn(bauweltId)
addIdColumn(memberId)
}
}
class BauweltMember(id: EntityID<CompositeID>): CompositeEntity(id) {