bigIncrements('id'); $table->string('name')->unique(); $table->string('email')->nullable(true); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->string('api_token', 80)->unique(); $table->softDeletes(); $table->rememberToken(); $table->timestamps(); // 索引 }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }