Files
FHC-Core/application/models/system/Rolleberechtigung_model.php
T
2024-10-17 15:34:00 +02:00

15 lines
257 B
PHP

<?php
class Rolleberechtigung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'system.tbl_rolleberechtigung';
$this->pk = array('rolle_kurzbz', 'berechtigung_kurzbz');
}
}