You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixelfed/app/Models/ConfigCache.php

37 lines
1.3 KiB
PHTML

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
4 days ago
use Illuminate\Support\Carbon;
4 days ago
/**
* @property int $id
* @property string $k
* @property string|null $v
* @property string|null $metadata
4 days ago
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
*
4 days ago
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConfigCache newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConfigCache newQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConfigCache query()
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConfigCache whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConfigCache whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConfigCache whereK($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConfigCache whereMetadata($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConfigCache whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|ConfigCache whereV($value)
4 days ago
*
4 days ago
* @mixin \Eloquent
*/
class ConfigCache extends Model
{
use HasFactory;
protected $table = 'config_cache';
9 months ago
public $guarded = [];
}