13 lines
158 B
PHP
Executable File
13 lines
158 B
PHP
Executable File
<?php
|
|
/**
|
|
* 数据库迁移模型
|
|
*/
|
|
|
|
namespace app\model;
|
|
|
|
use laytp\BaseModel;
|
|
|
|
class Migrations extends BaseModel
|
|
{
|
|
protected $name = 'migrations';
|
|
} |