diff --git a/database/migrations/2022_04_27_153631_update_images_table.php b/database/migrations/2022_04_27_153631_update_images_table.php index 242d2429..ab37b1e5 100644 --- a/database/migrations/2022_04_27_153631_update_images_table.php +++ b/database/migrations/2022_04_27_153631_update_images_table.php @@ -29,10 +29,10 @@ return new class extends Migration public function down() { Schema::table('images', function (Blueprint $table) { - $table->dropIndex('key'); - $table->dropIndex('md5'); - $table->dropIndex('sha1'); - $table->dropIndex('created_at'); + $table->dropIndex('images_key_index'); + $table->dropIndex('images_md5_index'); + $table->dropIndex('images_sha1_index'); + $table->dropIndex('images_created_at_index'); }); } };