mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 08:48:06 +01:00
12 lines
219 B
Ruby
12 lines
219 B
Ruby
|
class AddAttachmentHeaderToAccounts < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
change_table :accounts do |t|
|
||
|
t.attachment :header
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
remove_attachment :accounts, :header
|
||
|
end
|
||
|
end
|