mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 04:39:28 +00:00
cec2bb1a27
- Changes in the logic of the messaging system, now every message status is a new entry in the table tbl_msg_status
17 lines
340 B
PHP
17 lines
340 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", "status");
|
|
$this->hasSequence = false;
|
|
}
|
|
} |