to squeeze

This commit is contained in:
Clément
2025-06-03 14:10:35 +02:00
parent ea0884d39f
commit 2c4aeb4704
83 changed files with 1566 additions and 69 deletions

View File

@@ -0,0 +1,35 @@
<?php
/**
* Created by Reliese Model.
*/
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* Class CacheLock
*
* @property string $key
* @property string $owner
* @property int $expiration
*
* @package App\Models
*/
class CacheLock extends Model
{
protected $table = 'cache_locks';
protected $primaryKey = 'key';
public $incrementing = false;
public $timestamps = false;
protected $casts = [
'expiration' => 'int'
];
protected $fillable = [
'owner',
'expiration'
];
}