bigIncrements('id'); $table->integer('uid') ->index('uid') ->comment('用户ID'); $table->integer('post_id') ->default(0) ->comment('帖子id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('post_collect'); } }