mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
15 lines
253 B
PHP
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;
|
|
}
|
|
} |