add necessary models and DB tables for the class schedule feature

This commit is contained in:
Ivymaster
2026-04-14 16:14:54 +02:00
parent 2c057aad58
commit 59d531ed0f
5 changed files with 410 additions and 0 deletions
@@ -0,0 +1,15 @@
<?php
class ClassTimeSlot_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_unterrichtszeiten';
$this->pk = 'unterrichtszeit_id';
}
}