mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-06 06:39:27 +00:00
17 lines
247 B
PHP
17 lines
247 B
PHP
<?php
|
|
|
|
|
|
class ZGVPruefung_model extends DB_Model
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'public.tbl_zgvpruefung';
|
|
$this->pk = 'zgvpruefung_id';
|
|
$this->hasSequence = true;
|
|
}
|
|
|
|
} |