0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/schemas/tables/_after_all.sql

35 lines
981 B
MySQL
Raw Normal View History

2023-02-08 05:58:45 -05:00
/* This SQL will run after all other queries. */
---- Grant CRUD access to the group ----
2023-02-08 05:58:45 -05:00
grant select, insert, update, delete
on all tables
in schema public
to logto_tenant_${database};
---- Security policies for tenants table ----
2023-02-09 05:31:14 -05:00
2023-02-08 05:58:45 -05:00
revoke all privileges
on table tenants
from logto_tenant_${database};
-- Allow limited select to perform the RLS policy query in `after_each` (using select ... from tenants ...)
grant select (id, db_user, is_suspended)
2023-02-09 05:31:14 -05:00
on table tenants
to logto_tenant_${database};
alter table tenants enable row level security;
-- Create RLS policy to minimize the privilege
2023-02-09 05:31:14 -05:00
create policy tenants_tenant_id on tenants
using (db_user = current_user);
---- Revoke all privileges on systems table for tenant roles ----
2023-02-08 05:58:45 -05:00
revoke all privileges
on table systems
from logto_tenant_${database};
---- Revoke all privileges on service_logs table for tenant roles ----
revoke all privileges
on table service_logs
from logto_tenant_${database};