- removed columns (name, regionId, region, constellationId, constellation, effect, security, trueSec) from pathfinder.system table (no longer needed).

This commit is contained in:
Mark Friedrich
2018-07-01 20:20:47 +02:00
parent 0ee92a18a8
commit bbc950c0ca

View File

@@ -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,