added first version of uhstat1 form, added unique constraint for person_id in uhstat1daten table, added permissions for uhstat1daten sequence

This commit is contained in:
KarpAlex
2023-07-15 19:57:51 +02:00
parent 0a961d8e95
commit 68fbc13a69
5 changed files with 565 additions and 1 deletions
@@ -0,0 +1,14 @@
<?php
class Uhstat1daten_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_uhstat1daten';
$this->pk = 'uhstat1daten_id';
}
}