e70ee5aa6f
* Use database for kvp storage * Read kvpstore * Add web cron ability through API #821 * Style fixes * Fix text
24 lines
336 B
PHP
24 lines
336 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Contracts\Model;
|
|
|
|
/**
|
|
* @property string key
|
|
* @property string value
|
|
*/
|
|
class Kvp extends Model
|
|
{
|
|
public $table = 'kvp';
|
|
public $timestamps = false;
|
|
public $incrementing = false;
|
|
|
|
protected $keyType = 'string';
|
|
|
|
public $fillable = [
|
|
'key',
|
|
'value',
|
|
];
|
|
}
|