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