diff options
| author | horus | 2020-03-05 16:02:10 +0100 |
|---|---|---|
| committer | horus | 2020-03-05 16:02:10 +0100 |
| commit | 5dda561d73c9a5698386d643d56a142aa4bbdeec (patch) | |
| tree | 55afe2db98d0fa15fc845cc3da3afe6b517bbd3d /app/Airing.php | |
| parent | 420e44e0fe4623a439e26dfd0526ee5ef606a170 (diff) | |
| download | senpai-5dda561d73c9a5698386d643d56a142aa4bbdeec.tar.gz | |
Committing intermediate state.
Diffstat (limited to 'app/Airing.php')
| -rw-r--r-- | app/Airing.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/Airing.php b/app/Airing.php new file mode 100644 index 0000000..9e14571 --- /dev/null +++ b/app/Airing.php @@ -0,0 +1,16 @@ +<?php + +namespace App; + +use Illuminate\Database\Eloquent\Model; + +class Airing extends Model +{ + protected $table = 'airing'; + protected $fillable = [ + 'mal_id', + 'episode', + 'aired_at', + 'duration' + ]; +} |
