bigIncrements('id'); $table->unsignedBigInteger('user_id')->index(); $table->morphs('feedable'); $table->boolean('is_repost')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('feeds'); } }