2015-08-30 22:31:16 +08:00
|
|
|
<?php
|
|
|
|
|
2015-09-11 02:31:09 +08:00
|
|
|
namespace BookStack;
|
2015-08-30 22:31:16 +08:00
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Setting extends Model
|
|
|
|
{
|
|
|
|
protected $fillable = ['setting_key', 'value'];
|
|
|
|
|
|
|
|
protected $primaryKey = 'setting_key';
|
|
|
|
}
|