annotate schema/updates/1424/01.add_axis_rls.sql @ 5279:a17c2a0b8e44

client: use current time in the review layer request * avoid using value from time slider in the request for review layer
author Fadi Abbud <fadi.abbud@intevation.de>
date Thu, 11 Jun 2020 15:50:11 +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;