mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
14 lines
191 B
PHP
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';
|
|
}
|
|
} |