codewisdoms / schema
Run Laravel migrations in Codeigniter 3/4
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/codewisdoms/schema
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(); })