Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

Laravel 5.5 Lỗi cơ sở bảng hoặc chế độ xem đã tồn tại:1050 Bảng 'người dùng' đã tồn tại

Tôi đã tự giải quyết vấn đề của mình bằng cách thay đổi create_users_table.php của tôi

<?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. ap_pass_brigade không thành công trong hàm handle_request_ipc

  2. Tính tuổi dựa trên ngày sinh

  3. Kích hoạt MySQL Before Delete để tránh xóa nhiều hàng

  4. Lưu trữ các GUID / UUID của MySQL

  5. Truy vấn tổng Mysql trả về kết quả không chính xác khi sử dụng nhiều phép nối