Remove Team.address and Team.port

Remove PollAnswer and UserElo from GDPRQuery
This commit is contained in:
2026-03-24 22:11:19 +01:00
parent 6c062216a1
commit 59a927c33c
2 changed files with 0 additions and 6 deletions
@@ -32,8 +32,6 @@ object TeamTable : IntIdTable("Team", "TeamID") {
val color = char("TeamColor", 1).default("8")
val name = varchar("TeamName", 16)
val deleted = bool("TeamDeleted").default(false)
val address = text("Address").nullable()
val port = ushort("Port").default(25565u)
}
class Team(id: EntityID<Int>) : IntEntity(id) {