debian-mirror-gitlab/db/migrate/20151016195706_add_notes_line_code_index.rb

7 lines
132 B
Ruby
Raw Normal View History

# rubocop:disable all
2019-01-03 12:48:30 +05:30
class AddNotesLineCodeIndex < ActiveRecord::Migration
2015-10-24 18:46:33 +05:30
def change
add_index :notes, :line_code
end
end