Files
newznab-tmux/app/Models/Forumpost.php
T
2017-09-13 23:14:44 +02:00

39 lines
603 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Forumpost extends Model
{
const CREATED_AT = 'createddate';
const UPDATED_AT = 'updateddate';
/**
* @var string
*/
protected $table = 'forumpost';
/**
* @var bool
*/
protected $dateFormat = false;
/**
* @var array
*/
protected $fillable = [
'id',
'forumid',
'parentid',
'users_id',
'subject',
'message',
'locked',
'sticky',
'replies',
'createddate',
'updatedate',
];
}