Added diesel_migrations crate (v2.3.0) to enable database migration functionality. Updated Cargo.toml and Cargo.lock to include the new dependency along with its required sub-dependencies (migrations_internals and migrations_macros). Also made minor cleanups in the codebase: - Removed unused UI code from platform README - Cleaned up LLM server initialization code - Added additional build dependencies in documentation
12 lines
380 B
SQL
12 lines
380 B
SQL
DROP TABLE public.usage_analytics;
|
|
DROP TABLE public.message_history;
|
|
DROP TABLE public.context_injections;
|
|
DROP TABLE public.whatsapp_numbers;
|
|
DROP TABLE public.user_sessions;
|
|
DROP TABLE public.bot_channels;
|
|
DROP TABLE public.users;
|
|
DROP TABLE public.tools;
|
|
DROP TABLE public.system_automations;
|
|
DROP TABLE public.organizations;
|
|
DROP TABLE public.clicks;
|
|
DROP TABLE public.bots;
|