6 lines
145 B
Ruby
6 lines
145 B
Ruby
|
class RemoveIndexChampsOnPrivate < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
remove_index :champs, name: "index_champs_on_private"
|
||
|
end
|
||
|
end
|