mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-03 13:19:28 +00:00
d2298ae52a
- Changed Column statusgrund_kurzbz to statusgrund_id
15 lines
218 B
PHP
15 lines
218 B
PHP
<?php
|
|
|
|
class Statusgrund_model extends DB_Model
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = "public.tbl_status_grund";
|
|
$this->pk = "statusgrund_id";
|
|
}
|
|
}
|