Files
2024-10-17 15:34:00 +02:00

15 lines
199 B
PHP

<?php
class Archiv_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_archiv';
$this->pk = 'archiv_id';
}
}