shop_detail func: update in base

This commit is contained in:
phyusin
2019-01-07 16:05:18 +06:30
parent cca350b264
commit ccd9855281
15 changed files with 20 additions and 94 deletions

View File

@@ -23,8 +23,8 @@ class CreateOrderReservations < ActiveRecord::Migration[5.1]
t.decimal :grand_total, :precision => 10, :scale => 2, :null => false, :default => 0.00
t.decimal :transaction_fee, :precision => 10, :scale => 2, :null => false, :default => 0.00
t.string :status, :null => false, :default => "new"
t.string :order_remark
t.string :remark
t.longtext :order_remark
t.longtext :remark
t.json :action_times
t.timestamps
end

View File

@@ -5,10 +5,10 @@ class CreateDeliveries < ActiveRecord::Migration[5.1]
t.string :provider, :null => false
t.string :delivery_type, :null => false
t.string :township
t.string :address
t.string :direction_address
t.longtext :address
t.longtext :direction_address
t.string :delivery_fee
t.string :remark
t.longtext :remark
t.timestamps
end
end