1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-24 07:42:07 +03:00
Files
bookstack/app/Setting.php
2015-08-30 15:31:16 +01:00

13 lines
194 B
PHP

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