Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
151 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Models;
2019-01-22 17:04:28 -06:00
class Storage extends DeviceRelatedModel
{
protected $table = 'storage';
protected $primaryKey = 'storage_id';
}