mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 14:42:31 +01:00
21 lines
314 B
PHP
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',
|
||
|
];
|
||
|
}
|