diff --git a/hwe/sammo/API/General/Join.php b/hwe/sammo/API/General/Join.php index 15a95ea4..796dcc0b 100644 --- a/hwe/sammo/API/General/Join.php +++ b/hwe/sammo/API/General/Join.php @@ -414,7 +414,6 @@ class Join extends \sammo\BaseAPI 'officer_level' => 0, 'turntime' => $turntime, 'killturn' => 6, - 'lastconnect' => $now, 'lastrefresh' => $now, 'crewtype' => GameUnitConst::DEFAULT_CREWTYPE, 'makelimit' => 0, diff --git a/hwe/sammo/Enums/GeneralColumn.php b/hwe/sammo/Enums/GeneralColumn.php index ee3e6bac..dc40b6dd 100644 --- a/hwe/sammo/Enums/GeneralColumn.php +++ b/hwe/sammo/Enums/GeneralColumn.php @@ -58,7 +58,6 @@ enum GeneralColumn: string{ case recent_war = 'recent_war'; case makelimit = 'makelimit'; case killturn = 'killturn'; - case lastconnect = 'lastconnect'; case lastrefresh = 'lastrefresh'; case ip = 'ip'; case block = 'block'; diff --git a/hwe/sql/schema.sql b/hwe/sql/schema.sql index 834e5c2b..bff6f4cd 100644 --- a/hwe/sql/schema.sql +++ b/hwe/sql/schema.sql @@ -54,7 +54,6 @@ CREATE TABLE `general` ( `recent_war` DATETIME(6) NULL DEFAULT NULL, `makelimit` INT(2) NULL DEFAULT '0', `killturn` INT(3) NULL DEFAULT NULL, - `lastconnect` DATETIME NULL DEFAULT NULL, `lastrefresh` DATETIME NULL DEFAULT NULL, `ip` VARCHAR(40) NULL DEFAULT '', `block` INT(1) NULL DEFAULT '0',