Files
FHC-Core/application/models/dashboard/Dashboard_Widget_model.php
T
2023-03-10 10:29:54 +01:00

16 lines
273 B
PHP

<?php
class Dashboard_Widget_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'dashboard.tbl_dashboard_widget';
$this->pk = ['dashboard_id', 'widget_id'];
$this->hasSequence = false;
}
}