presseportale/dev/Models/MigrationVersion.php
Kevin Adametz 405df0a122
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
first commit
2025-10-20 17:53:02 +02:00

35 lines
800 B
PHP

<?php
/**
* Created by Reliese Model.
*/
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* Class MigrationVersion
*
* @property int|null $version
* @package App\Models
* @method static \Illuminate\Database\Eloquent\Builder|MigrationVersion newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|MigrationVersion newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|MigrationVersion query()
* @method static \Illuminate\Database\Eloquent\Builder|MigrationVersion whereVersion($value)
* @mixin \Eloquent
*/
class MigrationVersion extends Model
{
protected $table = 'migration_version';
public $incrementing = false;
public $timestamps = false;
protected $casts = [
'version' => 'int'
];
protected $fillable = [
'version'
];
}