id(); $table->unsignedBigInteger('user_id')->index()->comment('点赞用户'); $table->morphs('likeable'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('likes'); } }