Closed khwilo closed 4 months ago
Setup PostgreSQL as the database of choice
Create a database:
CREATE DATABASE baraza;
Create a user with a password:
CREATE USER dembe WITH PASSWORD 'ov6$*tPsH&be';
Grant privileges to the database for the created user:
GRANT ALL PRIVILEGES ON DATABASE baraza TO dembe;
Give permissions for user dembe to create new databases
ALTER USER dembe CREATEDB;
Description
Setup PostgreSQL as the database of choice
TODO
Implementation
Create a database:
Create a user with a password:
Grant privileges to the database for the created user:
Give permissions for user dembe to create new databases