Files
pathfinder/app/main/model/systemfactionkillmodel.php

30 lines
568 B
PHP

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