Files
FHC-Core/application/models/system/Thread_model.php
T
Paminger e624540c16 Message
2016-05-10 14:12:33 +02:00

15 lines
206 B
PHP

<?php
class Thread_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_msg_thread';
$this->pk = 'thread_id';
}
}