Files
2019-04-26 12:43:51 +02:00

14 lines
205 B
PHP

<?php
class Server_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'system.tbl_server';
$this->pk = 'server_kurzbz';
}
}