dropIndex(['schema', 'status']); $table->index(['schema', '_sys->updatedAt', 'status']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('records', function (Blueprint $table) { $table->dropIndex(['schema', '_sys->updatedAt', 'status']); $table->index(['schema', 'status']); }); } };