Add option 'allow guest orders' to enterprise

An enterprise manager can choose to allow guest orders (default) or
require a valid login for checkout.
This commit is contained in:
Maikel Linke
2016-09-23 08:36:58 +10:00
parent 92694c729f
commit c59cd21698
5 changed files with 28 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddAllowGuestOrdersToEnterprise < ActiveRecord::Migration
def change
add_column :enterprises, :allow_guest_orders, :boolean, default: true, null: false
end
end