Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Laravel 5.5 Błąd Tabela podstawowa lub widok już istnieje:1050 Tabela „użytkownicy” już istnieje

Sam rozwiązałem swój problem, zmieniając mój plik create_users_table.php

<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateUsersTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::dropIfExists('users');
        Schema::create('users', function (Blueprint $table) {
            $table->increments('id');
            $table->string('name');
            $table->string('email')->unique();
            $table->string('password');
            $table->rememberToken();
            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('users');
    }
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Django ustawi silnik pamięci masowej i domyślny zestaw znaków

  2. Obsługa restartu mysql w SQLAlchemy

  3. Sprawdzanie, czy użytkownik mysql istnieje

  4. Zwracanie DISTINCT pierwszego znaku pola (MySQL)

  5. MySQL ERROR 1005 (HY000):Nie można utworzyć tabeli 'foo.#sql-12c_4' (errno:150)