0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-05-09 18:40:06 +00:00
BookStackApp_BookStack/app/Settings/Setting.php
2021-06-26 15:23:15 +00:00

12 lines
188 B
PHP

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