first commit
This commit is contained in:
commit
405df0a122
3083 changed files with 69203 additions and 0 deletions
35
dev/Models/MigrationVersion.php
Normal file
35
dev/Models/MigrationVersion.php
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
<?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