Summary
PostgreSQL Row Level Security (RLS) policies enforce tenant isolation at the database layer, ensuring queries from one tenant cannot see or modify another tenant's rows.
Evidence
- ·tenant_isolation implementation_notes give concrete PostgreSQL RLS (ENABLE ROW LEVEL SECURITY; CREATE POLICY ... USING tenant_id = current_setting) and schema-per-tenant search_path routing (patterns/tenant_isolation.yaml)
Evidence grounding
Grounded, 1 supporting itemPostgreSQL row-level security and search_path routing implement per-tenant isolation.