Files
newznab-tmux/app/Models/AnidbInfo.php
T
2017-09-04 13:04:27 +02:00

48 lines
708 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class AnidbInfo extends Model
{
/**
* @var string
*/
protected $primaryKey = 'anidbid';
/**
* @var bool
*/
protected $dateFormat = false;
/**
* @var bool
*/
public $incrementing = false;
/**
* @var bool
*/
public $timestamps = false;
/**
* @var array
*/
protected $fillable = [
'anidbid',
'type',
'startdate',
'enddate',
'updated',
'related',
'similar',
'creators',
'description',
'rating',
'picture',
'categories',
'characters',
];
}