increments('id'); $table->unsignedInteger('user_id')->nullable(); $table->string('phone', 200)->nullable(); $table->string('name', 200)->nullable(); $table->tinyInteger('status')->default(1)->comment('1待审核,2重置,3驳回'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('user_resets'); } }