summaryrefslogtreecommitdiff
path: root/db/migrate/20160209130428_add_index_to_snippet.rb
blob: 480ac193d634a73bbc1b16a66483c2b62b533a66 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddIndexToSnippet < ActiveRecord::Migration[4.2]
  def change
    add_index :snippets, :updated_at
  end
end