Skip to content

Instantly share code, notes, and snippets.

@Jwely
Created June 29, 2017 14:51
Show Gist options
  • Save Jwely/ce445e1bed912cc96e340eee320288dc to your computer and use it in GitHub Desktop.
Save Jwely/ce445e1bed912cc96e340eee320288dc to your computer and use it in GitHub Desktop.
/* create some database and administrator account, for example. */
create user dummy_admin;
alter user dummy_admin with password 'dummy_pass';
create database "dummy_dbase" owner dummy_admin;
\c "dummy_dbase"
create extension if not exists postgis;
create extension if not exists fuzzystrmatch;
create extension if not exists postgis_tiger_geocoder;
create extension if not exists postgis_topology;
\c postgres
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment