You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE USER tyk WITH PASSWORD '12345678';
CREATE DATABASE tyk_analytics;
\connect tyk_analytics
CREATE SCHEMA tyk_schema;
GRANT CONNECT ON DATABASE tyk_analytics TO tyk;
GRANT USAGE, CREATE ON SCHEMA tyk_schema TO tyk;
ALTER USER tyk SET search_path TO tyk_schema;
I'm guessing create table, create index and select/insert/update should be enough
This should be documented to avoid unexpected failures during runtime.
The text was updated successfully, but these errors were encountered: