debian-mirror-gitlab/db/migrate/20151016195706_add_notes_line_code_index.rb
2016-06-16 23:09:34 +05:30

7 lines
132 B
Ruby

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