Files
FHC-Core/application/models/person/Geschlecht_model.php
T
2022-10-18 11:00:57 +02:00

15 lines
199 B
PHP

<?php
class Geschlecht_model extends DB_Model
{
/**
*
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_geschlecht';
$this->pk = 'geschlecht';
}
}