# This migration comes from tasks_management (originally 20151122152006) class AddAttachmentDocumentToTasks < ActiveRecord::Migration def self.up change_table :tasks_management_tasks do |t| t.attachment :document end end def self.down remove_attachment :tasks_management_tasks, :document end end