/* This SQL will run after all other queries. */ grant select, insert, update, delete on all tables in schema public to logto_tenant_${database}; -- Security policies for tenants table -- revoke all privileges on table tenants from logto_tenant_${database}; /* Allow limited select to perform RLS query in `after_each` (using select ... from tenants ...) */ grant select (id, db_user) on table tenants to logto_tenant_${database}; alter table tenants enable row level security; /* Create RLS policy to minimize the privilege */ create policy tenants_tenant_id on tenants to logto_tenant_${database} using (db_user = current_user); -- End -- /* Revoke all privileges on systems table for tenant roles */ revoke all privileges on table systems from logto_tenant_${database};