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
DO $block$ BEGIN IF NOT EXISTS (SELECT FROM pg_catalog.pg_user WHERE usename = 'user') THEN CREATE USER "user" WITH PASSWORD 'password' SUPERUSER; END IF; END $block$; CREATE DATABASE biomedical_search OWNER "user";