1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 14:42:31 +01:00
flox/backend/app/Setting.php
Viktor Geringer dbd6e99eee Fetch timestamp (#23)
* remove migration comments

* update timestamp by fetch parser

* remote empty line
2017-02-13 21:17:25 +01:00

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',
];
}