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

22 lines
333 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',
2016-11-29 12:06:36 +01:00
'created_at'
2016-11-28 08:40:46 +01:00
];
}