Merge branch 'crm' of bitbucket.org:code2lab/sxrestaurant

This commit is contained in:
Yan
2017-06-09 13:47:19 +06:30
47 changed files with 803 additions and 392 deletions

View File

@@ -0,0 +1,12 @@
class CreateCrmDiningQueues < ActiveRecord::Migration[5.1]
def change
create_table :crm_dining_queues do |t|
t.string :name
t.string :contact_no
t.string :queue_no
t.string :status
t.timestamps
end
end
end