index('key_id'); $table->index('remote_url'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('profiles', function (Blueprint $table) { $table->dropIndex('profiles_key_id_index'); $table->dropIndex('profiles_remote_url_index'); }); } };