Change api dependencies to compileOnlyApi in build.gradle.kts and rename KitName column to Name in PersonalKitTable.

Signed-off-by: Chaoscaot <max@maxsp.de>
This commit is contained in:
2025-11-10 09:02:23 +01:00
parent 6c94efaf90
commit 8680b9e6cf
2 changed files with 5 additions and 5 deletions
@@ -31,7 +31,7 @@ import org.jetbrains.exposed.v1.dao.CompositeEntityClass
object PersonalKitTable: CompositeIdTable("PersonalKit") {
val userId = reference("UserId", SteamwarUserTable)
val gamemode = varchar("Gamemode", 64)
val kitName = varchar("KitName", 64)
val kitName = varchar("Name", 64)
val inventory = text("Inventory")
val armor = text("Armor")
val inUse = bool("InUse")