BookStack/app/Setting.php

9 lines
156 B
PHP
Raw Normal View History

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