mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
17 lines
290 B
PHP
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';
|
|
}
|
|
}
|