mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 12:49:27 +00:00
15 lines
201 B
PHP
Executable File
15 lines
201 B
PHP
Executable File
<?php
|
|
class Frage_model extends DB_Model
|
|
{
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'testtool.tbl_frage';
|
|
$this->pk = 'frage_id';
|
|
}
|
|
}
|