Trong CreateUserTable
của bạn tệp di chuyển, thay vì Schema::table
bạn phải sử dụng Schema::create
.
Schema::table
được sử dụng để thay đổi bảng hiện có và Schema::create
được sử dụng để tạo bảng mới.
Kiểm tra tài liệu:
Vì vậy, quá trình di chuyển người dùng của bạn sẽ là:
<?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");
}
}