felicity-lims/postgres-db-setup.txt

5 lines
170 B
Text
Raw Normal View History

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