mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-28 03:06:28 +08:00
9 lines
212 B
Ruby
9 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
|