atomjoy / migratio
Load migrations from subdirectories in Laravel.
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/atomjoy/migratio
This package is not auto-updated.
Last update: 2025-10-02 03:45:49 UTC
README
Load migrations from subdirectories in Laravel.
Install
composer create-project laravel/laravel:^10.0 vue-app
cd vue-app
composer require atomjoy/migratio
Make migration
php artisan make:migration create_posts_table --path=/database/migrations/posts
Migrate tables
# all subdirectories php artisan migrate # from single subdir php artisan migrate --path=/database/migrations/posts
Run app
php artisan serve --host=localhost --port=8000