misc_pterodactyl-panel/app/Models/Setting.php
2021-07-17 15:18:05 -06:00

31 lines
502 B
PHP

<?php
namespace Pterodactyl\Models;
class Setting extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'settings';
/**
* @var bool
*/
public $timestamps = false;
/**
* @var array
*/
protected $fillable = ['key', 'value'];
/**
* @var array
*/
public static array $validationRules = [
'key' => 'required|string|between:1,191',
'value' => 'string',
];
}