12-05-2026 Frontend dev
This commit is contained in:
parent
405df0a122
commit
5b8bdf4182
779 changed files with 480564 additions and 6241 deletions
|
|
@ -1,35 +0,0 @@
|
|||
<?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'
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue