Files
agenciapsilmno/DBS/2026-03-11/supabase-snippets/Untitled query 869.sql
2026-03-12 08:58:36 -03:00

8 lines
186 B
SQL

-- 2) Tenho membership ativa no tenant atual?
select *
from tenant_members
where tenant_id = 'e8b10543-fb36-4e75-9d37-6fece9745637'
and user_id = auth.uid()
order by created_at desc;