我正在开发一个包(在工作台下),它依赖于另一个包(https://github.com/efficiently/authority-controller)来进行用户角色管理。要使此包工作,我需要最初运行迁移。但是当我运行命令php artisan migrate --package=machuga/authority-l4
时,它会显示Nothing to migrate
。
我尝试从根运行php artisan dump-autoload
,还php artisan migrate --bench=machuga/authority-l4
但似乎没有任何效果。
答案 0 :(得分:0)
尝试将Authority\AuthorityL4\AuthorityL4ServiceProvider
添加到您的提供商并运行:
php artisan migrate --package=machuga/authority-l4
我认为,efficiently/authority-controller
取决于machuga/authority
,但不会调用提供者。