litovchenko / laravel-migration-assistant
Package info
github.com/iv-litovchenko/laravel-migration-assistant
Type:project
pkg:composer/litovchenko/laravel-migration-assistant
v1.0.0
2022-09-21 08:22 UTC
This package is auto-updated.
Last update: 2026-04-04 22:34:26 UTC
README
$ composer require iv-litovchenko/laravel-migration-assistant
$ composer require iv-litovchenko/laravel-migration-assistant --ignore-platform-reqs
$ php artisan massist
Route::get('/liapp', function () { $liApp = new App(); return $liApp->main(); });
Schema::table('users', static function (Blueprint $table) { $schemaManager = Schema::getConnection()->getDoctrineSchemaManager(); $indexesFound = $schemaManager->listTableIndexes('users');
if (! array_key_exists('users_email_index', $indexesFound)) {
$table->index('email', 'users_email_index');
}
});
