In Ihrer CreateUserTable
Migrationsdatei anstelle von Schema::table
Sie müssen Schema::create
verwenden .
Das Schema::table
wird verwendet, um eine vorhandene Tabelle und das Schema::create
zu ändern wird verwendet, um eine neue Tabelle zu erstellen.
Prüfen Sie die Dokumentation:
- http://laravel.com/docs/schema#creating- and-dropping-tables
- http://laravel.com/docs/schema#adding-columns
Ihre Benutzermigration wird also sein:
<?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");
}
}