2023-07-12 07:47:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-05 00:43:02 +00:00
|
|
|
class AddAttachmentDataToImports < ActiveRecord::Migration[4.2]
|
2017-03-30 17:42:33 +00:00
|
|
|
def self.up
|
|
|
|
change_table :imports do |t|
|
|
|
|
t.attachment :data
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
remove_attachment :imports, :data
|
|
|
|
end
|
|
|
|
end
|