mirror of
https://github.com/lsky-org/lsky-pro.git
synced 2025-01-08 11:57:52 +08:00
fix a bug
This commit is contained in:
parent
e44fabbd31
commit
cff42566c8
@ -29,10 +29,10 @@ return new class extends Migration
|
|||||||
public function down()
|
public function down()
|
||||||
{
|
{
|
||||||
Schema::table('images', function (Blueprint $table) {
|
Schema::table('images', function (Blueprint $table) {
|
||||||
$table->dropIndex('key');
|
$table->dropIndex('images_key_index');
|
||||||
$table->dropIndex('md5');
|
$table->dropIndex('images_md5_index');
|
||||||
$table->dropIndex('sha1');
|
$table->dropIndex('images_sha1_index');
|
||||||
$table->dropIndex('created_at');
|
$table->dropIndex('images_created_at_index');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user