Laravel-admin 的 uninstall 之後的重灌及其注意點

yanger發表於2018-11-26

之前我遇到了laravel-admin 崩盤了的情景,所以需要 uninstall 之後重灌,然後遇到一些問題,想總結下來供以後歸納總結:

  1. 命令列裡執行一下 uninstall 指令:artisan admin:uninstall,詳細命令見 https://laravel-admin.org/docs/zh/commands
  2. 執行教程中的命令:
    file
    file
  3. 手動刪除資料庫中帶有 admin 字首的資料庫,這裡刪除之前就不需要備份了。
  4. 然後把 migrations 表中 Laravel-Admin 相關的記錄刪除,資料庫中執行 sql 語句 delete from migrations where migration like '%create_admin_tables';
  5. 然後執行 php artisan migratephp artisan admin:install
    file
    補充:重灌後執行 git status 可能會有些不一樣了,我覺得是可能是因為 uninstall 的時候檔案沒刪乾淨吧。
    file
    完成以上步驟,就可以重新開心的玩耍了~

楊兒

相關文章