CreateUserTable
で Schema::table
の代わりに移行ファイル Schema::create
を使用する必要があります 。
Schema::table
既存のテーブルとSchema::create
を変更するために使用されます 新しいテーブルを作成するために使用されます。
ドキュメントを確認してください:
- http://laravel.com/docs/schema#creating- and-dropping-tables
- http://laravel.com/docs/schema#adding-columns >
したがって、ユーザーの移行は次のようになります。
<?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");
}
}