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