This commit is contained in:
Paminger
2016-05-10 14:12:33 +02:00
parent 1a36ce3dff
commit e624540c16
10 changed files with 667 additions and 3627 deletions
@@ -0,0 +1,14 @@
<?php
class Thread_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_msg_thread';
$this->pk = 'thread_id';
}
}