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

21 lines
314 B
PHP
Raw Normal View History

2016-11-28 08:40:46 +01:00
<?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',
];
}