Adding payment method

This commit is contained in:
adam.harbas@a-net.ba
2016-01-08 09:36:28 +01:00
parent 2a0e326862
commit 05c8f6ce88
6 changed files with 49 additions and 32 deletions

View File

@@ -0,0 +1,5 @@
class AddPaymentMethodToDeliveryDestination < ActiveRecord::Migration
def change
add_column :delivery_destinations, :payment_method, :string, default: 'cash_on_delivery'
end
end