From 9f0947abae17caa900cd521097fb263cdb2b85bb Mon Sep 17 00:00:00 2001 From: Jonathan Miller <1+jmiller@noreply.git.mokoconsulting.tech> Date: Sat, 27 Jun 2026 20:21:20 +0000 Subject: [PATCH] feat: add uninstall SQL --- .../sql/uninstall.mysql.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 source/plg_system_mokosuitebooking/sql/uninstall.mysql.sql diff --git a/source/plg_system_mokosuitebooking/sql/uninstall.mysql.sql b/source/plg_system_mokosuitebooking/sql/uninstall.mysql.sql new file mode 100644 index 0000000..70df5a2 --- /dev/null +++ b/source/plg_system_mokosuitebooking/sql/uninstall.mysql.sql @@ -0,0 +1,12 @@ +-- Copyright (C) 2026 Moko Consulting +-- SPDX-License-Identifier: GPL-3.0-or-later +-- Authored-by: Moko Consulting + +DROP TABLE IF EXISTS `#__mokosuitebooking_waitlist`; +DROP TABLE IF EXISTS `#__mokosuitebooking_booking_services`; +DROP TABLE IF EXISTS `#__mokosuitebooking_bookings`; +DROP TABLE IF EXISTS `#__mokosuitebooking_availability_overrides`; +DROP TABLE IF EXISTS `#__mokosuitebooking_schedules`; +DROP TABLE IF EXISTS `#__mokosuitebooking_services`; +DROP TABLE IF EXISTS `#__mokosuitebooking_staff`; +DROP TABLE IF EXISTS `#__mokosuitebooking_locations`;