add order and reservation table
This commit is contained in:
@@ -1,15 +1,18 @@
|
||||
class CreateOrderReservations < ActiveRecord::Migration[5.1]
|
||||
def change
|
||||
create_table :order_reservations do |t|
|
||||
t.string :
|
||||
t.string :order_type, :null => false
|
||||
t.string :customer_id, :null => false
|
||||
t.string :request_date, :null => false
|
||||
t.string :reserved_date, :null => false
|
||||
t.string :order_reservation_id, :limit => 16, :primary_key => true
|
||||
t.string :order_reservation_type, :null => false
|
||||
t.string :customer_id, :null => false
|
||||
t.datetime :requested_time, :null => false
|
||||
t.integer :item_count, :null => false, :default => 0
|
||||
t.string :payment_type, :null => false
|
||||
t.string :payment_status, :null => false
|
||||
t.integer :total_customer
|
||||
t.string :payment_type
|
||||
t.string :payment_status
|
||||
t.string :payment_ref
|
||||
t.string :status, :null => false, :default => "new"
|
||||
t.string :order_remark
|
||||
t.string :reservation_remark
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user