Start tab Abschlusspruefung, Table and Form with Dropdowns and default data

This commit is contained in:
ma0068
2024-11-27 12:52:03 +01:00
parent 222f31c464
commit 3318147ba0
12 changed files with 950 additions and 4 deletions
@@ -0,0 +1,14 @@
<?php
class Note_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_note';
$this->pk = 'note';
}
}