Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Laravel 5.5 Error Base table atau view sudah ada:1050 Table 'users' sudah ada

Saya Memecahkan Masalah Saya Sendiri dengan Mengubah create_users_table.php saya

<?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. BUAT TABEL SEPERTI A1 sebagai A2

  2. Belajar MySQL / MariaDB untuk Pemula – Bagian 1

  3. MySQL Jelaskan batas baris

  4. Mengapa MySQL mengizinkan grup berdasarkan kueri TANPA fungsi agregat?

  5. ambil data dari mysql dan email itu