blob: bdd09c3672cdf9f595448d06b09c530f29da2e96 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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
|