index('is_loaded','rejected_bills_is_loaded_index'); $table->index('is_checked','rejected_bills_is_checked_index'); }); } /** * Reverse the migrations. * * @return void */ public function down() { // Schema::table('rejected_bills',function (Blueprint $table){ $table->dropIndex('rejected_bills_is_loaded_index'); $table->dropIndex('rejected_bills_is_checked_index'); }); } }