summaryrefslogtreecommitdiff
path: root/db/migrate/20140428105831_add_notes_index_updated_at.rb
blob: 0589101af9385888703332b4b4675e6c11bba1b2 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddNotesIndexUpdatedAt < ActiveRecord::Migration
  def change
    add_index :notes, :updated_at
  end
end