From 03ad09340de57661b7374c721c5c151d660f3514 Mon Sep 17 00:00:00 2001 From: Paige Williams Date: Fri, 3 Apr 2026 13:58:22 -0700 Subject: [PATCH] bring back gis user access on tables in public schema --- TEKDB/entrypoint.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/TEKDB/entrypoint.sh b/TEKDB/entrypoint.sh index 71e4b6e..4acea53 100644 --- a/TEKDB/entrypoint.sh +++ b/TEKDB/entrypoint.sh @@ -43,6 +43,14 @@ END; \$\$; -- Schema and table permissions +GRANT USAGE ON SCHEMA public TO gis; +GRANT SELECT, INSERT, UPDATE, DELETE ON TABLE + public.places, + public.lookuphabitat, + public.lookupplanningunit, + public.lookuptribe +TO gis; +GRANT USAGE, UPDATE ON SEQUENCE public.places_placeid_seq TO gis; EOF echo "gis user permissions configured."