debian-mirror-gitlab/db/migrate/20160217174422_add_note_to_tasks.rb
2016-06-16 23:09:34 +05:30

7 lines
137 B
Ruby

# rubocop:disable all
class AddNoteToTasks < ActiveRecord::Migration
def change
add_reference :tasks, :note, index: true
end
end