From bbc950c0ca29d1e7256be625954582c8bd84509d Mon Sep 17 00:00:00 2001 From: Mark Friedrich Date: Sun, 1 Jul 2018 20:20:47 +0200 Subject: [PATCH] - removed columns (name, regionId, region, constellationId, constellation, effect, security, trueSec) from `pathfinder`.`system` table (no longer needed). --- app/main/model/systemmodel.php | 38 ---------------------------------- 1 file changed, 38 deletions(-) diff --git a/app/main/model/systemmodel.php b/app/main/model/systemmodel.php index d0fd8fc2..14f6e8f6 100644 --- a/app/main/model/systemmodel.php +++ b/app/main/model/systemmodel.php @@ -45,40 +45,12 @@ class SystemModel extends AbstractMapTrackingModel { 'index' => true, 'validate' => true ], - 'name' => [ - 'type' => Schema::DT_VARCHAR128, - 'nullable' => false, - 'default' => '' - ], 'alias' => [ 'type' => Schema::DT_VARCHAR128, 'nullable' => false, 'default' => '', 'activity-log' => true ], - 'regionId' => [ - 'type' => Schema::DT_INT, - 'index' => true - ], - 'region' => [ - 'type' => Schema::DT_VARCHAR128, - 'nullable' => false, - 'default' => '' - ], - 'constellationId' => [ - 'type' => Schema::DT_INT, - 'index' => true - ], - 'constellation' => [ - 'type' => Schema::DT_VARCHAR128, - 'nullable' => false, - 'default' => '' - ], - 'effect' => [ - 'type' => Schema::DT_VARCHAR128, - 'nullable' => false, - 'default' => '' - ], 'typeId' => [ 'type' => Schema::DT_INT, 'index' => true, @@ -90,16 +62,6 @@ class SystemModel extends AbstractMapTrackingModel { ] ] ], - 'security' => [ - 'type' => Schema::DT_VARCHAR128, - 'nullable' => false, - 'default' => '' - ], - 'trueSec' => [ - 'type' => Schema::DT_FLOAT, - 'nullable' => false, - 'default' => 1 - ], 'statusId' => [ 'type' => Schema::DT_INT, 'nullable' => false,