From bbaec08b67199d3abdb962a66bd55f6be94b8ca4 Mon Sep 17 00:00:00 2001 From: wish Date: Mon, 20 Feb 2023 00:34:39 +1100 Subject: [PATCH] remove unused database tables --- patch-schema/unused-tables.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 patch-schema/unused-tables.sql diff --git a/patch-schema/unused-tables.sql b/patch-schema/unused-tables.sql new file mode 100644 index 000000000..a3411d517 --- /dev/null +++ b/patch-schema/unused-tables.sql @@ -0,0 +1,17 @@ +BEGIN; + +DROP TABLE IF EXISTS public.account_ban; + +DROP TABLE IF EXISTS public.account_history; + +DROP TABLE IF EXISTS public.account_moderation; + +DROP TABLE IF EXISTS public.account_sub; + +DROP TABLE IF EXISTS public.history; + +DROP TABLE IF EXISTS public.questlists; + +DROP TABLE IF EXISTS public.schema_migrations; + +END; \ No newline at end of file