Merge branch 'feature-25430/stammdaten_im_infocentertool_editierbar'

This commit is contained in:
Andreas Österreicher
2023-02-02 10:32:36 +01:00
6 changed files with 461 additions and 26 deletions
@@ -0,0 +1,14 @@
<?php
class Geschlecht_model extends DB_Model
{
/**
*
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_geschlecht';
$this->pk = 'geschlecht';
}
}