mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02: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
|