Merge remote-tracking branch 'origin/master'

This commit is contained in:
alex
2018-04-30 17:32:22 +02:00
36 changed files with 2756 additions and 2182 deletions
@@ -0,0 +1,15 @@
<?php
class RtStudienplan_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = "public.tbl_rt_studienplan";
$this->pk = array("rt_id", "studienplan_id");
$this->hasSequence = false;
}
}