felicity-lims/postgres-db-setup.txt

6 lines
228 B
Text

sudo -u postgres psql
create database felicity_lims;
create user felicity with encrypted password 'felicity';
grant all privileges on database felicity_lims to felicity;
\c felicity_lims;
grant all on schema public to felicity;