summaryrefslogtreecommitdiff
path: root/app/Airing.php
blob: 9e1457157f81f772e38ca8e0e22e77acdb7f1869 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Airing extends Model
{
	protected $table = 'airing';
	protected $fillable = [
		'mal_id',
		'episode',
		'aired_at',
		'duration'
	];
}