feat: add app and database modules
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class SystemSettingRevision extends Model
|
||||
{
|
||||
public $timestamps = false;
|
||||
|
||||
protected $fillable = [
|
||||
'system_setting_id',
|
||||
'key',
|
||||
'old_value',
|
||||
'new_value',
|
||||
'changed_by',
|
||||
'changed_ip',
|
||||
'changed_agent',
|
||||
'created_at',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user