Guest User

Untitled

a guest
Nov 16th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. 當php artisan migrate發生以下錯誤時
  2. Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes
  3.  
  4. 新增defaultStringLength至app/Providers/AppServiceProvider.php內
  5.  
  6. 如下:
  7.  
  8. use Illuminate\Support\Facades\Schema;
  9.  
  10. public function boot()
  11. {
  12. Schema::defaultStringLength(191);
  13. }
  14.  
  15. 刪除所有table後重新執行 php artisan migrate
Add Comment
Please, Sign In to add comment