- Added new controller RtPerson

- Changed pk in model RtPerson
- Added grants for new sequence in migration script 011_reihungstest
This commit is contained in:
bison
2016-08-17 15:41:07 +02:00
parent d419cc327d
commit f21db9531e
3 changed files with 81 additions and 3 deletions
+2 -3
View File
@@ -8,8 +8,7 @@ class RtPerson_model extends DB_Model
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_rt_person';
$this->pk = array('person_id', 'rt_id');
$this->hasSequence = false;
$this->dbTable = "public.tbl_rt_person";
$this->pk = "rt_person_id";
}
}