mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 14:42:31 +01:00
dbd6e99eee
* remove migration comments * update timestamp by fetch parser * remote empty line
20 lines
350 B
PHP
20 lines
350 B
PHP
<?php
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Setting extends Model {
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $dates = [
|
|
'last_fetch_to_file_parser',
|
|
];
|
|
|
|
protected $fillable = [
|
|
'show_date',
|
|
'show_genre',
|
|
'episode_spoiler_protection',
|
|
'last_fetch_to_file_parser',
|
|
];
|
|
} |