Files
FHC-Core/application/models/crm/Statusgrund_model.php
T
oesi d2298ae52a - Moved Database Changes from Migrations to dbupdate_3.2.php
- Changed Column statusgrund_kurzbz to statusgrund_id
2017-02-06 20:24:23 +01:00

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";
}
}