Files
FHC-Core/application/models/education/Pruefung_model.php
T
Paminger 1a36ce3dff Models
2016-05-04 07:17:07 +02:00

15 lines
208 B
PHP

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