spree_paypal_express/db/migrate/20111024125404_order_pay_pa...

14 lines
261 B
Ruby

class OrderPayPalAddressField < ActiveRecord::Migration
def self.up
change_table :orders do |t|
t.integer :paypal_ship_address_id
end
end
def self.down
change_table :orers do |t|
t.remove :paypal_ship_address_id
end
end
end