yzh52521/migrate-schema

易使用漂亮的数据库迁移代码构建器

v1.0.1 2023-09-08 01:33 UTC

This package is auto-updated.

Last update: 2024-09-08 03:36:27 UTC


README

composer require yzh52521/migrate-schema

使用

// 创建表
Schema::create($this->getAdapter(), '表名', function (Blueprint $table) {
    // 迁移代码
});

// 修改表
Schema::table($this->getAdapter(), '表名', function (Blueprint $table) {
    // 迁移代码
});

可用的字段定义方法

查看使用示例