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