debian-mirror-gitlab/db/migrate/20160209130428_add_index_to_snippet.rb
2019-02-15 15:39:39 +05:30

7 lines
137 B
Ruby

# rubocop:disable all
class AddIndexToSnippet < ActiveRecord::Migration[4.2]
def change
add_index :snippets, :updated_at
end
end