mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-20 00:12:15 +00:00
- Added field status in the primary key array of model MsgStatus_model
- Changes in the logic of the messaging system, now every message status is a new entry in the table tbl_msg_status
This commit is contained in:
@@ -11,7 +11,7 @@ class MsgStatus_model extends DB_Model
|
||||
{
|
||||
parent::__construct();
|
||||
$this->dbTable = "public.tbl_msg_status";
|
||||
$this->pk = array("message_id", "person_id");
|
||||
$this->pk = array("message_id", "person_id", "status");
|
||||
$this->hasSequence = false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user