remove unique index

This commit is contained in:
Pete Matsyburka
2024-08-16 15:20:56 +03:00
parent 50c342ec5c
commit c4f05fbd9e
2 changed files with 13 additions and 2 deletions
@@ -0,0 +1,11 @@
# frozen_string_literal: true
class RemoveActiveStorageUniqIndex < ActiveRecord::Migration[7.1]
def change
remove_index :active_storage_attachments, %i[record_type record_id name blob_id],
unique: true,
name: 'index_active_storage_attachments_uniqueness'
add_index :active_storage_attachments, %i[record_type record_id name blob_id]
end
end