Files
FHC-Core/application/models/system/MsgStatus_model.php
T
paolo d3bc72539a - message_helper.php fixed
- Changes in the logic of sending email
2016-07-26 18:19:13 +02:00

17 lines
330 B
PHP

<?php
if ( ! defined("BASEPATH")) exit("No direct script access allowed");
class MsgStatus_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = "public.tbl_msg_status";
$this->pk = array("message_id", "person_id");
$this->hasSequence = false;
}
}