In uw CreateUserTable
migratiebestand, in plaats van Schema::table
je moet Schema::create
. gebruiken .
Het Schema::table
wordt gebruikt om een bestaande tabel te wijzigen en het Schema::create
wordt gebruikt om een nieuwe tabel te maken.
Controleer de documentatie:
- http://laravel.com/docs/schema#creating- en-dropping-tabellen
- http://laravel.com/docs/schema#adding-columns
Uw gebruikersmigratie is dus:
<?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");
}
}