Laravel 5.5 Error Base table or view already exists: 1050 Table 'users' already exists

前端 未结 15 1308
温柔的废话
温柔的废话 2020-11-30 10:22

Specifications:

  • Laravel Version: 5.5.3
  • PHP Version: 7.1
  • Database Driver & Version: MariaDB 10.1.26

15条回答
  •  旧巷少年郎
    2020-11-30 11:08

    Create your migrations by command php artisan make:migration create_category_table Then in your database/migrations set your necessary fields and databases,then run this command pho artisan migrate --pretend It will show sql statements,copy sql statement of category and paste it in database in sql and just click on run,your migrations would be there,no need to delete users table

提交回复
热议问题