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: da5cb2e05db693fdd8f3b5b72c71eabfac39e53c (plain)
1
2
3
4
5
class AddNoteToTasks < ActiveRecord::Migration
  def change
    add_reference :tasks, :note, index: true
  end
end