mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-01 16:42:41 +01:00
59367b3417
Worked around slower eloquent access to speed up permission generation.
9 lines
156 B
PHP
9 lines
156 B
PHP
<?php namespace BookStack;
|
|
|
|
class Setting extends Model
|
|
{
|
|
protected $fillable = ['setting_key', 'value'];
|
|
|
|
protected $primaryKey = 'setting_key';
|
|
}
|