Files
discourse/db/migrate/20200715030908_remove_unneccessary_bookmark_name_index.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
162 B
Ruby
Raw Normal View History

2020-07-17 15:55:07 +10:00
# frozen_string_literal: true
class RemoveUnneccessaryBookmarkNameIndex < ActiveRecord::Migration[6.0]
def change
remove_index :bookmarks, :name
end
end