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: 4d17c3a2917b1df52338b5f2c1cf24e62737de9c (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddIndexToSnippet < ActiveRecord::Migration
  def change
    add_index :snippets, :updated_at
  end
end