Files
FHC-Core/application/models/system/Fehler_model.php
T

16 lines
240 B
PHP

<?php
class Fehler_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'system.tbl_fehler';
$this->pk = array('fehlercode');
$this->hasSequence = false;
}
}