Files
FHC-Core/application/models/crm/Statusgrundstatus_model.php
T
ma0048 b5500e2d11 - statusgrundstatus tabelle hinzugefuegt
- sql abfragen angepasst
- statusgrund widget gefixed
2025-02-03 13:00:06 +01:00

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');
}
}