migrations remove index name

This commit is contained in:
xiaomlove
2026-04-20 22:41:09 +07:00
parent dfe9436f1d
commit 94a35b81dc
23 changed files with 36 additions and 34 deletions
@@ -28,7 +28,7 @@ class CreateSubsTable extends Migration
$table->enum('anonymous', ['yes', 'no'])->default('no');
$table->unsignedMediumInteger('hits')->default(0);
$table->string('ext', 10)->default('');
$table->index(['torrent_id', 'lang_id'], 'torrentid_langid');
$table->index(['torrent_id', 'lang_id'],);
});
}