mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
42 lines
661 B
PHP
42 lines
661 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ConsoleInfo extends Model
|
|
{
|
|
const CREATED_AT = 'createddate';
|
|
const UPDATED_AT = 'updateddate';
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $table = 'consoleinfo';
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
protected $dateFormat = false;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'id',
|
|
'title',
|
|
'asin',
|
|
'url',
|
|
'salesrank',
|
|
'platform',
|
|
'publisher',
|
|
'genres_id',
|
|
'esrb',
|
|
'releasedate',
|
|
'review',
|
|
'cover',
|
|
'createddate',
|
|
'updateddate',
|
|
];
|
|
}
|