Files
FHC-Core/application/models/system/FehlerApp_model.php
T
2026-02-03 15:39:11 +01:00

15 lines
253 B
PHP

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