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