- 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
This commit is contained in:
paolo
2016-07-01 10:50:37 +02:00
parent 41a0cc33f1
commit 9cce095e9b
5 changed files with 94 additions and 7 deletions
+15
View File
@@ -0,0 +1,15 @@
<?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;
}
}