Files
FHC-Core/application/models/crm/RtPerson_model.php
T
bison f21db9531e - Added new controller RtPerson
- Changed pk in model RtPerson
- Added grants for new sequence in migration script 011_reihungstest
2016-08-17 15:41:07 +02:00

14 lines
209 B
PHP

<?php
class RtPerson_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = "public.tbl_rt_person";
$this->pk = "rt_person_id";
}
}