0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-03-13 03:43:22 +00:00
BookStackApp_BookStack/app/Setting.php

13 lines
198 B
PHP
Raw Permalink Normal View History

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