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

17 lines
290 B
PHP

<?php
if ( ! defined('BASEPATH'))
exit('No direct script access allowed');
class Attachment_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_msg_attachment';
$this->pk = 'attachment_id';
}
}