thibaud-dauce/laravel-recursive-migrations

此包最新版本(dev-master)没有可用的许可信息。

此包允许将Laravel迁移文件放入子目录中。

dev-master 2017-01-25 16:58 UTC

This package is not auto-updated.

Last update: 2024-09-23 14:38:52 UTC


README

此包允许将Laravel迁移文件放入子目录。

查看我的博客文章:我的博客文章

安装

使用Composer下载此包

composer require thibaud-dauce/laravel-recursive-migration

然后在你的 config/app.php 中添加服务提供者

ThibaudDauce\LaravelRecursiveMigrations\LaravelRecursiveMigrationsServiceProvider::class,

使用方法

所有迁移命令都可用。只需添加 --recursive-r 标志。

php artisan migrate --recursive
php artisan migrate:rollback --recursive
php artisan migrate:refresh --recursive
php artisan migrate:reset --recursive
php artisan migrate:status --recursive