mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 22:52:32 +01:00
22 lines
333 B
PHP
22 lines
333 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',
|
|
'created_at'
|
|
];
|
|
}
|