Skip to content
Snippets Groups Projects
run.sh 225 B
Newer Older
L4168's avatar
L4168 committed
#!/bin/bash
psql -U postgres << EOF
create database ehasa;
\c ehasa;
create user ehasa;
alter user ehasa with encrypted password 'salasana';
grant all privileges on database ehasa to ehasa;
create extension "uuid-ossp";
EOF