class AddTextIndexToNoteComments < ActiveRecord::Migration[4.2]
def up
- add_index :note_comments, [], :columns => "to_tsvector('english', body)", :using => "GIN", :name => "index_note_comments_on_body"
+ add_index :note_comments, "to_tsvector('english', body)", :using => "GIN", :name => "index_note_comments_on_body"
end
def down