tap/db/migrate/20150310080932_change_cost_to_price_in_orders.rb

6 lines
122 B
Ruby
Raw Normal View History

2015-03-10 10:37:48 +00:00
class ChangeCostToPriceInOrders < ActiveRecord::Migration
def change
rename_column :orders, :cost, :price
end
end