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: 0a3ad103009f71d678d53c115f61e1db09c398de (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddNotesLineCodeIndex < ActiveRecord::Migration[4.2]
  def change
    add_index :notes, :line_code
  end
end