mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-03 02:13:16 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			192 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			192 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace BookStack\Settings;
 | 
						|
 | 
						|
use BookStack\App\Model;
 | 
						|
 | 
						|
class Setting extends Model
 | 
						|
{
 | 
						|
    protected $fillable = ['setting_key', 'value'];
 | 
						|
 | 
						|
    protected $primaryKey = 'setting_key';
 | 
						|
}
 |