Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的项目中安装 Backpack 包,我按照文档步骤进行操作,但是当我迁移时,它显示“Nothing to migrate”。我已经尝试发布迁移但没有任何效果。
从他们的文档中,您唯一需要迁移的是 laravel 附带的默认用户和密码重置表。
php artisan migrate #generates users 表(使用 Laravel 的默认迁移)
因此,如果您已经迁移了这些,那么您可以跳过该部分。但是,如果您还没有,请确保您有默认迁移database/migrations,然后运行php artisan migrate:refresh
database/migrations
php artisan migrate:refresh