aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20240318211829_remove_uniqueness_index_on_title_things.rb
blob: 96b5be64f953936247a2c21d58e6fd93b99897b6 (plain)
1
2
3
4
5
class RemoveUniquenessIndexOnTitleThings < ActiveRecord::Migration[7.1]
  def change
    remove_index :things, :title
  end
end