Files
sx-fc/db/migrate/20170403135934_create_orders.rb

19 lines
767 B
Ruby

class CreateOrders < ActiveRecord::Migration[5.0]
def change
create_table :orders, :id => false, :primary_key => :order_id do |t|
t.string :order_id, :limit => 16, :null => false, :index => true, :unique => true #custom foreign_key to prevent conflict during sync
t.datetime :date, :null => false
t.string :source, :null => false, :default => "emenu"
t.string :order_type, :null => false, :default => "dine-in"
t.string :customer_id, foreign_key: true, :limit => 16
t.integer :item_count, :null => false, :default => 0
t.integer :quantity_count, :null => false, :default => 0
t.string :status, :null => false, :default => "new"
t.json :waiters
t.json :guest_info
t.timestamps
end
end
end