From d913c074e085da8e5da55ad571401f016f750b24 Mon Sep 17 00:00:00 2001 From: phyusin Date: Tue, 9 Oct 2018 18:07:13 +0630 Subject: [PATCH] remove reservation migrate --- .../20180928052742_create_reservations.rb | 24 ----------------- ...20180928074338_create_reservation_items.rb | 26 ------------------- 2 files changed, 50 deletions(-) delete mode 100644 db/migrate/20180928052742_create_reservations.rb delete mode 100644 db/migrate/20180928074338_create_reservation_items.rb diff --git a/db/migrate/20180928052742_create_reservations.rb b/db/migrate/20180928052742_create_reservations.rb deleted file mode 100644 index 637c4ba0..00000000 --- a/db/migrate/20180928052742_create_reservations.rb +++ /dev/null @@ -1,24 +0,0 @@ -class CreateReservations < ActiveRecord::Migration[5.1] - def change - create_table :reservations, :id => false do |t| - t.string :reservation_id, :limit => 16, :primary_key => true - t.string :source, :null => false, :default => "Cashier" - t.string :reservation_type, :null => false - t.string :customer_id, :null => false - t.datetime :checkin_datetime, :null => false - t.datetime :checkout_datetime - t.json :reservation_info - t.string :remark - t.string :status, :null => false, :default => "new" - t.datetime :action_at, :null => false - t.string :action_by, :null => false - t.datetime :modify_at - t.string :modify_by - t.timestamps - end - end - - def down - drop_table :reservations - end -end diff --git a/db/migrate/20180928074338_create_reservation_items.rb b/db/migrate/20180928074338_create_reservation_items.rb deleted file mode 100644 index 54ee6097..00000000 --- a/db/migrate/20180928074338_create_reservation_items.rb +++ /dev/null @@ -1,26 +0,0 @@ -class CreateReservationItems < ActiveRecord::Migration[5.1] - def change - create_table :reservation_items, :id => false do |t| - t.string :reservation_items_id, :limit => 16, :primary_key => true - t.string :reservation_id, foreign_key: true, :null => false, :limit => 16 - t.string :item_status, :null => false, :default => "new" - t.string :item_code, :null => false - t.string :item_instance_code - t.string :item_name, :null => false - t.string :alt_name, :null => false - t.json :set_menu_items - t.integer :account_id, :limit => 8, :null => false, :default => 1 - t.decimal :qty, :precision => 10, :scale => 2, :null => false, :default => 0.00 - t.decimal :unit_price, :precision => 10, :scale => 2, :null => false, :default => 0.00 - t.decimal :price, :precision => 10, :scale => 2, :null => false, :default => 0.00 - t.string :remark - t.string :options - t.boolean :taxable, :null => false, :default => true - t.timestamps - end - end - - def down - drop_table :reservation_items - end -end