Skip to content

Instantly share code, notes, and snippets.

@simonthompson99
Last active January 15, 2021 12:35
Show Gist options
  • Select an option

  • Save simonthompson99/d3dedbcddf4ce8db610c02901bf5d122 to your computer and use it in GitHub Desktop.

Select an option

Save simonthompson99/d3dedbcddf4ce8db610c02901bf5d122 to your computer and use it in GitHub Desktop.
[Create new db on local postgres] Adds a new database to local postgres installation #sql #database #genomics_england
psql postgres -U simonthompson
create database <db_name>;
grant all privileges on database <db_name> to simon;
grant all privileges on database <db_name> to cdt_user;
\q
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment