annotate schema/updates/1424/01.add_axis_rls.sql @ 5384:18969a4d31b6 extented-report

Added a table to store SQL update scripts for aggregated data.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 01 Jul 2021 21:56:50 +0200
parents 7dff1015283d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5013
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
1 CREATE POLICY hide_nothing ON waterway.waterway_axis
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
2 FOR SELECT TO waterway_user USING (true);
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
3 CREATE POLICY sys_admin ON waterway.waterway_axis
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
4 FOR ALL TO sys_admin USING (true);
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
5
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
6 CREATE POLICY responsibility_area_insert ON waterway.waterway_axis
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
7 FOR INSERT TO waterway_admin
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
8 WITH CHECK (users.utm_covers(wtwaxs));
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
9 CREATE POLICY responsibility_area_update ON waterway.waterway_axis
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
10 FOR UPDATE TO waterway_admin
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
11 USING (users.utm_covers(wtwaxs));
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
12 CREATE POLICY responsibility_area_delete ON waterway.waterway_axis
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
13 FOR DELETE TO waterway_admin
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
14 USING (users.utm_covers(wtwaxs));
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
15
7dff1015283d Add row level security policies for waterway axis
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
16 ALTER TABLE waterway.waterway_axis ENABLE ROW LEVEL SECURITY;