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

前端 未结 15 1319
温柔的废话
温柔的废话 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

    Here are the steps I took to solve the same issue:

    1. In the console I wrote php artisan tinker

    2. Then, again in the console, Schema::drop('users')

    3. At the end php artisan migrate and it all worked.

提交回复
热议问题