scinote-web/db/migrate/20160808083040_add_attachment_workflowimg_to_experiments.rb
2016-08-10 08:53:59 +02:00

10 lines
212 B
Ruby

class AddAttachmentWorkflowimgToExperiments < ActiveRecord::Migration
def self.up
add_attachment :experiments, :workflowimg
end
def self.down
remove_attachment :experiments, :workflowimg
end
end