Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160209130428_add_index_to_snippet.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95d5719be59dc41298b958f07f38501e9bb11e00 (plain)
1
2
3
4
5
class AddIndexToSnippet < ActiveRecord::Migration
  def change
    add_index :snippets, :updated_at
  end
end