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