mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 04:01:24 +00:00
36 lines
520 B
PHP
36 lines
520 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Forumpost extends Model
|
|
{
|
|
/**
|
|
* @var bool
|
|
*/
|
|
protected $dateFormat = false;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'id',
|
|
'forumid',
|
|
'parentid',
|
|
'users_id',
|
|
'subject',
|
|
'message',
|
|
'locked',
|
|
'sticky',
|
|
'replies',
|
|
'createddate',
|
|
'updatedate',
|
|
];
|
|
}
|