]> BookStack Code Mirror - bookstack/blob - app/Settings/Setting.php
Merge branch 'master' of https://github.com/haxatron/BookStack into haxatron_upload_issue
[bookstack] / app / Settings / Setting.php
1 <?php
2
3 namespace BookStack\Settings;
4
5 use BookStack\Model;
6
7 class Setting extends Model
8 {
9     protected $fillable = ['setting_key', 'value'];
10
11     protected $primaryKey = 'setting_key';
12 }