Cronjob für Korrektur des Studienplanes korrigiert nun auch den

Studienplan der Reihungstestanmeldung
This commit is contained in:
Andreas Österreicher
2018-04-30 09:44:40 +02:00
parent b3e57e422f
commit ecaaa3cd19
2 changed files with 79 additions and 1 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;
}
}