Files
FHC-Core/application/models/system/Phrase_inhalt_model.php
T
2016-06-21 16:25:55 +02:00

16 lines
224 B
PHP

<?php
class Phrase_inhalt_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_phrase_inhalt';
$this->pk = 'phrase_inhalt_id';
}
}