mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-22 01:12:17 +00:00
16 lines
266 B
PHP
Executable File
16 lines
266 B
PHP
Executable File
<?php
|
|
class Benutzergruppe_model extends DB_Model
|
|
{
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'public.tbl_benutzergruppe';
|
|
$this->pk = array('gruppe_kurzbz', 'uid');
|
|
$this->hasSequence = false;
|
|
}
|
|
}
|