mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-15 02:59:28 +00:00
9cce095e9b
- Added method postAddReihungstest to controller Prestudent - Added method getReihungstestByPersonID to controller Reihungstest - Fixed tables structure in the migration script 011_reihungstest.php - Added model RtPerson_model
15 lines
252 B
PHP
15 lines
252 B
PHP
<?php
|
|
|
|
class RtPerson_model extends DB_Model
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'public.tbl_rt_person';
|
|
$this->pk = array('person_id', 'rt_id');
|
|
$this->hasSequence = false;
|
|
}
|
|
} |