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