codewisdoms/schema

Run Laravel migrations in Codeigniter 3/4

0.1.0 2024-03-19 15:27 UTC

This package is auto-updated.

Last update: 2024-05-19 15:56:50 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();
})