de7d60e18e
Co-Authored-By: Lisa Durand <lisa.c.durand@gmail.com>
9 lines
278 B
Ruby
9 lines
278 B
Ruby
class RemoveExportsUnicityConstraint < ActiveRecord::Migration[7.0]
|
|
disable_ddl_transaction!
|
|
|
|
def change
|
|
remove_index :exports, ["format", "time_span_type", "statut", "key"], unique: true
|
|
|
|
add_index :exports, "key", unique: false, algorithm: :concurrently
|
|
end
|
|
end
|