Refactor TeamTable to introduce default values for color and deleted, and make address column nullable.

Signed-off-by: Chaoscaot <max@maxsp.de>
This commit is contained in:
2025-11-11 18:44:46 +01:00
parent 36691c6fea
commit 81715736ae
+1 -1
View File
@@ -99,7 +99,7 @@ class Team(id: EntityID<Int>) : IntEntity(id) {
name = value
}
var address: String
var address: String?
get() = teamAddress
set(value) = useDb {
teamAddress = value