cleaning stale data console command modified

This commit is contained in:
2019-12-11 20:36:19 -06:00
parent 8447319514
commit 55225fdea3
4 changed files with 25 additions and 4 deletions
+40
View File
@@ -0,0 +1,40 @@
<?php
namespace App\Models\Lookups;
use Illuminate\Database\Eloquent\Model;
class ItemLookup extends Model
{
/**
* Table Name
*/
public $table = 'item_lookup';
/**
* Timestamps
*/
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'capacity',
'description',
'graphic_id',
'group_id',
'icon_id',
'market_group_id',
'mass',
'name',
'packaged_volume',
'portion_size',
'published',
'radius',
'type_id',
'volume',
];
}