1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2024-11-23 19:32:29 +01:00
BookStack/app/Settings/Setting.php
2023-05-17 17:56:55 +01:00

13 lines
192 B
PHP

<?php
namespace BookStack\Settings;
use BookStack\App\Model;
class Setting extends Model
{
protected $fillable = ['setting_key', 'value'];
protected $primaryKey = 'setting_key';
}