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

20151016195706_add_notes_line_code_index.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3298630c1e8b95e41ae166c9c104a459530495c7 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddNotesLineCodeIndex < ActiveRecord::Migration
  def change
    add_index :notes, :line_code
  end
end