Files
FHC-Core/application/models/crm/RtPerson_model.php
T
paolo 9cce095e9b - Added permissions for table public.tbl_rt_person
- 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
2016-07-01 10:50:37 +02:00

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;
}
}