This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-06-05 02:43:02 +02:00
|
|
|
class AddAttachmentDataToImports < ActiveRecord::Migration[4.2]
|
2017-03-30 19:42:33 +02:00
|
|
|
def self.up
|
|
|
|
change_table :imports do |t|
|
|
|
|
t.attachment :data
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
remove_attachment :imports, :data
|
|
|
|
end
|
|
|
|
end
|