codewisdoms/schema

Run Laravel migrations in Codeigniter 3/4

0.1.1 2024-06-05 06:47 UTC

This package is auto-updated.

Last update: 2024-11-05 07:46:41 UTC


README

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

How to Install

The recommended way to install schema is through Composer.

composer require codewisdoms/schema

Example request

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

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