summaryrefslogtreecommitdiff
path: root/db/migrate/20160217174422_add_note_to_tasks.rb
blob: c2a42ce5dd886e22281eb65d524016f611bff566 (plain)
1
2
3
4
5
class AddNoteToTasks < ActiveRecord::Migration[4.2]
  def change
    add_reference :tasks, :note, index: true
  end
end