Files
FHC-Core/application/models/education/Lehreinheitgruppe_model.php
T
2016-05-04 07:05:23 +02:00

15 lines
234 B
PHP

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