increments('id'); $table->integer('user_id'); $table->integer('status')->default(0)->comment('0未审核,1同意,-1拒绝'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('matchmakers'); } }