Hi folks, how to turn off the apps for a week and then come back?
Open your phpMyadmin and run:
update restaurants set is_schedulable = 0 update restaurants set is_active = 0
When you want to come back to work as normal: update restaurants set is_schedulable = 1
update restaurants set is_schedulable = 1
JusanSG thanks sir
--- Restaurant Schedule & Order Schedule From Database --- update restaurants set is_schedulable = '1', accept_scheduled_orders = '1' where is_accepted = '1';
--- Delete Payment Failed Order's From Database --- DELETE FROM orders WHERE orderstatus_id = 9
orders