1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 22:52:32 +01:00
flox/backend/app/Episode.php
2016-11-28 08:40:46 +01:00

21 lines
314 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Episode extends Model {
public $timestamps = false;
protected $fillable = [
'tmdb_id',
'name',
'season_number',
'episode_number',
'episode_tmdb_id',
'seen',
'season_tmdb_id',
];
}