increments('id'); $table->integer('user_id')->unsigned()->index(); //问题发起人UID $table->integer('question_id')->unsigned()->index(); //问题ID $table->tinyInteger('status')->default(0); //回答状态0待审核,1已审核 $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('question_invitations'); } }