mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-04 06:36:27 +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
|