codewisdoms/schema

在 Codeigniter 3/4 中运行 Laravel 迁移

0.1.1 2024-06-05 06:47 UTC

This package is auto-updated.

Last update: 2024-09-05 07:23:49 UTC


README

A simple wrapper to run Laravel migrations in Codeigniter 3 and 4. I created this to make an old project maintainable.

如何安装

建议通过 Composer 安装 schema。

composer require codewisdoms/schema

示例请求

use \CodeWisdoms\Schema\Schema;
use \CodeWisdoms\Schema\Table;

Schema::create('my_table', function(Table $table) {
    $table->id();
})