Files
FHC-Core/application/models/codex/Bisioaufenthaltfoerderung_model.php
T
KarpAlex cee6156646 - added Bisioaufenthaltfoerderung_model.php
- dbupdate_3.3.php: added Buchungstyp "ZuschussIO"
2021-07-07 20:22:53 +02:00

16 lines
303 B
PHP

<?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;
}
}