mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 22:01:30 +00:00
24fa162413
[ci skip] [skip ci]
38 lines
496 B
PHP
38 lines
496 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class BinaryBlacklist extends Model
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $table = 'binaryblacklist';
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
protected $dateFormat = false;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'id',
|
|
'groupname',
|
|
'regex',
|
|
'msgcol',
|
|
'optype',
|
|
'status',
|
|
'description',
|
|
'last_activity',
|
|
];
|
|
}
|