debian-mirror-gitlab/db/migrate/20151016195706_add_notes_line_code_index.rb
2018-12-23 12:14:25 +05:30

6 lines
137 B
Ruby

# rubocop:disable all
class AddNotesLineCodeIndex < ActiveRecord::Migration[4.2]
def change
add_index :notes, :line_code
end
end