Guest User

Untitled

a guest
Feb 10th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. //ローカルのPCにログイン
  2. mysql -uroot -p
  3. //DB作成
  4. create database blog;
  5. // DB指定
  6. use blog;
  7.  
  8. //Change the .env
  9. -for example
  10. DB_CONNECTION=mysql
  11. DB_HOST=127.0.0.1
  12. DB_PORT=3306
  13. DB_DATABASE=blog
  14. DB_USERNAME=root
  15. DB_PASSWORD=root
  16.  
  17. //add code
  18. ファイルのパス
  19. app\Providers\AppServiceProvider.php
  20.  
  21. // コードの追加
  22. file: AppServiceProvider
  23. use Illuminate\Support\Facades\Schema; //Import Schema
  24.  
  25. public function boot()
  26. {
  27. //
  28. Schema::defaultStringLength(191);
  29. }
Add Comment
Please, Sign In to add comment