1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 14:42:31 +01:00
flox/backend/app/Setting.php

23 lines
408 B
PHP
Raw Normal View History

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Setting extends Model {
public $timestamps = false;
2016-12-20 11:17:22 +01:00
protected $dates = [
'last_fetch_to_file_parser',
];
protected $fillable = [
'show_date',
'show_genre',
'episode_spoiler_protection',
'last_fetch_to_file_parser',
'show_watchlist_everywhere',
'show_ratings',
];
2017-01-24 16:11:47 +01:00
}