increments('id'); $table->unsignedInteger('messages_id')->comment('消息ID'); $table->unsignedInteger('user_id')->comment('用户ID'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('favorite'); } }