Files
pathfinder/app/main/model/pathfinder/systemfactionkillmodel.php
Mark Friedrich a33615445e - new "_NPC faction_" added for k-space systems, closed #773
- improved file structure for _Model_ classes (`app/main/model/..`). Group by database name
- improved database connection handling (fixed persistent DB connections)
2019-04-12 21:34:29 +02:00

30 lines
584 B
PHP

<?php
/**
* Created by PhpStorm.
* User: exodus4d
* Date: 14.03.15
* Time: 21:04
*/
namespace Model\Pathfinder;
use DB\SQL\Schema;
class SystemFactionKillModel extends AbstractSystemApiBasicModel {
protected $table = 'system_kills_factions';
protected $fieldConf = [
'active' => [
'type' => Schema::DT_BOOL,
'nullable' => false,
'default' => 1,
'index' => true
],
'systemId' => [
'type' => Schema::DT_INT,
'index' => true,
'unique' => true
]
];
}