0
0
Fork 0
mirror of https://github.com/lunaisnotaboy/mastodon.git synced 2025-01-14 08:36:56 +00:00
mastodon/db/migrate/20160312193225_add_attachment_header_to_accounts.rb

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