2016-08-08 22:02:17 +08:00
|
|
|
class AddAttachmentWorkflowimgToExperiments < ActiveRecord::Migration
|
|
|
|
def self.up
|
2016-08-10 14:53:59 +08:00
|
|
|
add_attachment :experiments, :workflowimg
|
2016-08-08 22:02:17 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
remove_attachment :experiments, :workflowimg
|
|
|
|
end
|
|
|
|
end
|