0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-03-08 17:53:03 +00:00
BookStackApp_BookStack/app/Settings/Setting.php

13 lines
192 B
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
namespace BookStack\Settings;
2023-05-17 16:56:55 +00:00
use BookStack\App\Model;
class Setting extends Model
{
protected $fillable = ['setting_key', 'value'];
protected $primaryKey = 'setting_key';
}