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 database
CREATE DATABASE <dbname>;# create user
CREATE USER <dbuser> WITH PASSWORD <'password'>;# configuration for django to increse efficiency
ALTER ROLE <dbuser> SET client_encoding TO 'utf8';
ALTER ROLE <dbuser> SET default_transaction_isolation TO 'read committed';
ALTER ROLE <dbuser> SET timezone TO 'UTC';# grant privileges
GRANT ALL PRIVILEGES ON DATABASE <dbname> TO <dbuser>;