Some checks failed
Build & Deploy Frontend / build-push-deploy (push) Failing after 15s
18 lines
584 B
SQL
18 lines
584 B
SQL
-- Allow authenticated users to create organizations they own
|
|
CREATE POLICY "Users can create organizations"
|
|
ON public.organizations
|
|
FOR INSERT TO authenticated
|
|
WITH CHECK (created_by = auth.uid());
|
|
|
|
-- Allow the creator to seed first admin membership for a new org
|
|
CREATE POLICY "Seed first org admin"
|
|
ON public.organization_members
|
|
FOR INSERT TO authenticated
|
|
WITH CHECK (
|
|
user_id = auth.uid()
|
|
AND role = 'admin'::public.user_role
|
|
AND NOT EXISTS (
|
|
SELECT 1 FROM public.organization_members m
|
|
WHERE m.org_id = organization_members.org_id AND m.deleted_at IS NULL
|
|
)
|
|
); |