spree_paypal_express/db/migrate/20130130182351_rename_sysmo...

10 lines
283 B
Ruby

class RenameSysmocomPayPalShipAddress < ActiveRecord::Migration
def up
rename_column :spree_orders, :paypal_ship_address_id, :sysmocom_paypal_ship_address_id
end
def down
rename_column :spree_orders, :sysmocom_paypal_ship_address_id, :paypal_ship_address_id
end
end