-- RLS-Policies für die Assets-&-BIA-Tabellen (analog zur Migration row_level_security) ALTER TABLE "assets" ENABLE ROW LEVEL SECURITY; ALTER TABLE "asset_relations" ENABLE ROW LEVEL SECURITY; ALTER TABLE "processes" ENABLE ROW LEVEL SECURITY; ALTER TABLE "process_assets" ENABLE ROW LEVEL SECURITY; ALTER TABLE "bia_entries" ENABLE ROW LEVEL SECURITY; CREATE POLICY tenant_isolation ON "assets" USING ("tenant_id" = current_setting('app.tenant_id', true)); CREATE POLICY tenant_isolation ON "asset_relations" USING ("tenant_id" = current_setting('app.tenant_id', true)); CREATE POLICY tenant_isolation ON "processes" USING ("tenant_id" = current_setting('app.tenant_id', true)); CREATE POLICY tenant_isolation ON "process_assets" USING ("tenant_id" = current_setting('app.tenant_id', true)); CREATE POLICY tenant_isolation ON "bia_entries" USING ("tenant_id" = current_setting('app.tenant_id', true));