mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
13 lines
188 B
PHP
13 lines
188 B
PHP
<?php
|
|
|
|
namespace BookStack\Settings;
|
|
|
|
use BookStack\Model;
|
|
|
|
class Setting extends Model
|
|
{
|
|
protected $fillable = ['setting_key', 'value'];
|
|
|
|
protected $primaryKey = 'setting_key';
|
|
}
|