Libs and Vorlagen

This commit is contained in:
Paminger
2016-06-17 00:12:46 +02:00
parent 7766595c5d
commit 4c58b95728
22 changed files with 967 additions and 4 deletions
@@ -0,0 +1,18 @@
<?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;
}
}