Files
FHC-Core/application/models/crm/RtPerson_model.php
T
SimonGschnell a21a292da6 dokument upload
2024-01-29 16:48:41 +01:00

14 lines
209 B
PHP
Executable File

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