json('activity')->nullable()->after('following_id'); $table->timestamp('handled_at')->nullable()->after('is_local'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('follow_requests', function (Blueprint $table) { $table->dropColumn('activity'); $table->dropColumn('handled_at'); }); } }