Skip to content
Snippets Groups Projects

Error handling

Merged Ghost User requested to merge error-handling into Development
1 file
+ 0
9
Compare changes
  • Side-by-side
  • Inline
+ 0
9
#!/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
\ No newline at end of file
Loading