Postgres
Connect your Postgres data to explore and visualize your data
Last updated
Connect your Postgres data to explore and visualize your data
Last updated
CREATE USER 'canvas_user' PASSWORD 'your-strong-password';
// Grant access to schema "public". Repeat this for any other schemas you want to access
GRANT USAGE ON SCHEMA "public" TO canvas_user;
GRANT SELECT ON ALL TABLES IN SCHEMA "public" TO canvas_user;
// This grants access to all future tables
ALTER DEFAULT PRIVILEGES IN SCHEMA "public" GRANT SELECT ON TABLES TO canvas_user;