- added Bisioaufenthaltfoerderung_model.php

- dbupdate_3.3.php: added Buchungstyp "ZuschussIO"
This commit is contained in:
KarpAlex
2021-07-07 20:22:53 +02:00
parent 0ee6485ece
commit cee6156646
2 changed files with 28 additions and 0 deletions
@@ -0,0 +1,15 @@
<?php
class Bisioaufenthaltfoerderung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_bisio_aufenthaltfoerderung';
$this->pk = array('bisio_id', 'aufenthaltfoerderung_code');
$this->hasSequence = false;
}
}