summaryrefslogtreecommitdiff
path: root/db/migrate/20151016195706_add_notes_line_code_index.rb
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