mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
30 lines
461 B
PHP
30 lines
461 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Predb extends Model
|
|
{
|
|
public $timestamps = false;
|
|
|
|
protected $dateFormat = false;
|
|
|
|
protected $fillable = [
|
|
'id',
|
|
'title',
|
|
'nfo',
|
|
'size',
|
|
'category',
|
|
'predate',
|
|
'source',
|
|
'requestid',
|
|
'groups_id',
|
|
'nuked',
|
|
'nukereason',
|
|
'files',
|
|
'filename',
|
|
'searched'
|
|
];
|
|
}
|