atomjoy / migratio
Load migrations from subdirectories in Laravel.
v1.0
2023-06-13 17:29 UTC
This package is not auto-updated.
Last update: 2024-12-25 23:10:06 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