mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-27 17:09:37 +00:00
b5500e2d11
- sql abfragen angepasst - statusgrund widget gefixed
17 lines
257 B
PHP
17 lines
257 B
PHP
<?php
|
|
|
|
class Statusgrundstatus_model extends DB_Model
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = "public.tbl_status_grund_status";
|
|
$this->pk = array('status_kurzbz', 'statusgrund_id');
|
|
|
|
}
|
|
|
|
}
|