class AddAttachmentBackgroundToUsers < ActiveRecord::Migration
def self.up
change_table :users do |t|
t.attachment :background
end
def self.down
remove_attachment :users, :background
Powered by TurnKey Linux.