Mysql
 sql >> Database >  >> RDS >> Mysql

Laravel 4 migra la tabella di base non trovata

Nella tua CreateUserTable file di migrazione, invece di Schema::table devi usare Schema::create .

Lo Schema::table viene utilizzato per modificare una tabella esistente e lo Schema::create viene utilizzato per creare una nuova tabella.

Controlla la documentazione:

Quindi la tua migrazione utente sarà:

<?php

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

class CreateUserTable extends Migration {

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('user', function(Blueprint $table) {
        {

            $table->increments("id",true);
            $table->string("username")->nullable()->default(null);
            $table->string("password")->nullable()->default(null);
            $table->string("email")->nullable()->default(null);
            $table->timestamps();

        });
    }

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

}