Add ConfigCache model and migration

This commit is contained in:
Daniel Supernault 2021-05-07 21:32:59 -06:00
parent 5d2f575984
commit ba37a54a20
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7
2 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,14 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class ConfigCache extends Model
{
use HasFactory;
protected $table = 'config_cache';
public $fillable = ['*'];
}