- BC Break: Project folder structure changed. Removed `app/main` dir. - BC Break: Core _PHP_ framework + dependencies moved into `composer.json` and are no longer part of this repo
92 lines
2.3 KiB
PHP
92 lines
2.3 KiB
PHP
<?php
|
|
|
|
|
|
namespace Exodus4D\Pathfinder\Model\Universe;
|
|
|
|
use DB\SQL\Schema;
|
|
|
|
class SystemNeighbourModel extends AbstractUniverseModel {
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $table = 'system_neighbour';
|
|
|
|
/**
|
|
* allow table truncate
|
|
* -> used on /setup page or index build
|
|
* @var bool
|
|
*/
|
|
protected $allowTruncate = true;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fieldConf = [
|
|
'regionId' => [
|
|
'type' => Schema::DT_INT,
|
|
'index' => true,
|
|
'belongs-to-one' => 'Exodus4D\Pathfinder\Model\Universe\RegionModel',
|
|
'constraint' => [
|
|
[
|
|
'table' => 'region',
|
|
'on-delete' => 'CASCADE'
|
|
]
|
|
],
|
|
'validate' => 'notDry'
|
|
],
|
|
'constellationId' => [
|
|
'type' => Schema::DT_INT,
|
|
'index' => true,
|
|
'belongs-to-one' => 'Exodus4D\Pathfinder\Model\Universe\ConstellationModel',
|
|
'constraint' => [
|
|
[
|
|
'table' => 'constellation',
|
|
'on-delete' => 'CASCADE'
|
|
]
|
|
],
|
|
'validate' => 'notDry'
|
|
],
|
|
'systemId' => [
|
|
'type' => Schema::DT_INT,
|
|
'index' => true,
|
|
'unique' => true,
|
|
'belongs-to-one' => 'Exodus4D\Pathfinder\Model\Universe\SystemModel',
|
|
'constraint' => [
|
|
[
|
|
'table' => 'system',
|
|
'on-delete' => 'CASCADE'
|
|
]
|
|
],
|
|
'validate' => 'notDry'
|
|
],
|
|
'systemName' => [
|
|
'type' => Schema::DT_VARCHAR128,
|
|
'nullable' => false,
|
|
'default' => ''
|
|
],
|
|
'jumpNodes' => [
|
|
'type' => Schema::DT_VARCHAR512,
|
|
'nullable' => false,
|
|
'default' => ''
|
|
],
|
|
'trueSec' => [
|
|
'type' => Schema::DT_DECIMAL,
|
|
'nullable' => false,
|
|
'default' => 0
|
|
]
|
|
];
|
|
|
|
/**
|
|
* No static columns added
|
|
* @var bool
|
|
*/
|
|
protected $addStaticFields = false;
|
|
|
|
/**
|
|
* @param int $id
|
|
* @param string $accessToken
|
|
* @param array $additionalOptions
|
|
*/
|
|
protected function loadData(int $id, string $accessToken = '', array $additionalOptions = []){}
|
|
} |