diff --git a/CommonCore/SQL/src/de/steamwar/sql/Team.kt b/CommonCore/SQL/src/de/steamwar/sql/Team.kt index 40e04ac9..c0da53bf 100644 --- a/CommonCore/SQL/src/de/steamwar/sql/Team.kt +++ b/CommonCore/SQL/src/de/steamwar/sql/Team.kt @@ -33,7 +33,7 @@ object TeamTable : IntIdTable("Team", "TeamID") { val name = varchar("TeamName", 16) val deleted = bool("TeamDeleted").default(false) val address = text("Address").nullable() - val port = ushort("Port") + val port = ushort("Port").default(25565u) } class Team(id: EntityID) : IntEntity(id) {