This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
|
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
|