13 lines
249 B
Ruby
13 lines
249 B
Ruby
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
|