Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160217174422_add_note_to_tasks.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2a42ce5dd886e22281eb65d524016f611bff566 (plain)
1
2
3
4
5
class AddNoteToTasks < ActiveRecord::Migration[4.2]
  def change
    add_reference :tasks, :note, index: true
  end
end