Created
June 29, 2017 14:51
-
-
Save Jwely/ce445e1bed912cc96e340eee320288dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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