erp-cicd/my-access-hub-main/supabase/migrations/20250809183507_ff92a486-8a16-45f5-ba24-d33ed5e9559b.sql
Ali 20e95c2fb6
Some checks failed
Build & Deploy Frontend / build-push-deploy (push) Failing after 15s
pushing all
2025-08-30 11:51:11 +05:30

12 lines
484 B
SQL

-- Remove organization system from the database
-- First, drop the organization_members table
DROP TABLE IF EXISTS public.organization_members CASCADE;
-- Then drop the organizations table
DROP TABLE IF EXISTS public.organizations CASCADE;
-- Drop the user_role enum that was used for organization roles
DROP TYPE IF EXISTS public.user_role CASCADE;
-- Remove the is_org_member function as it's no longer needed
DROP FUNCTION IF EXISTS public.is_org_member(uuid, text[]) CASCADE;