add file model

This commit is contained in:
j3d1 2019-11-28 04:52:53 +01:00
parent 53037d26af
commit acf701da70
10 changed files with 96 additions and 9 deletions

25
app/File.php Normal file
View file

@ -0,0 +1,25 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class File extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'hash', 'iid'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = [];
}