mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-06 09:51:53 +00:00
12 lines
210 B
Ruby
12 lines
210 B
Ruby
class AddAttachmentDataToImports < ActiveRecord::Migration
|
|
def self.up
|
|
change_table :imports do |t|
|
|
t.attachment :data
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
remove_attachment :imports, :data
|
|
end
|
|
end
|