Files
pathfinder/app/main/model/systempodkillmodel.php
Mark Friedrich c99179e25e - renamed "eve_universe.zip" file
- updated "info_panel.html"
2018-07-20 14:44:31 +02:00

30 lines
565 B
PHP

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