Files
FHC-Core/application/models/education/Note_model.php
T
2024-08-29 09:53:34 +02:00

14 lines
191 B
PHP

<?php
class Note_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_note';
$this->pk = 'note';
}
}