From 81715736ae325e46a8cce6a794b4f60efa929647 Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Tue, 11 Nov 2025 18:44:46 +0100 Subject: [PATCH] Refactor `TeamTable` to introduce default values for `color` and `deleted`, and make `address` column nullable. Signed-off-by: Chaoscaot --- CommonCore/SQL/src/de/steamwar/sql/Team.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommonCore/SQL/src/de/steamwar/sql/Team.kt b/CommonCore/SQL/src/de/steamwar/sql/Team.kt index 086dc81a..0c56a656 100644 --- a/CommonCore/SQL/src/de/steamwar/sql/Team.kt +++ b/CommonCore/SQL/src/de/steamwar/sql/Team.kt @@ -99,7 +99,7 @@ class Team(id: EntityID) : IntEntity(id) { name = value } - var address: String + var address: String? get() = teamAddress set(value) = useDb { teamAddress = value