-
Notifications
You must be signed in to change notification settings - Fork 3
edm‐data
Damon McCullough edited this page Jun 6, 2025
·
1 revision
For most product builds, we use our persistent Postgres DB cluster named edm-data. Each product has it's own DB.
To create a new DB for a product using DBeaver:
-
Right click on
edm-datain the Navigator panel and selectConnection View -> Advanced -
Right click on
edm-dataand selectCreate -> Database -
For database name, use our convention of
db-product-name -
Change the
Tablespaceselection frompg_defaulttoDefault -
Click
OK -
Add the postgres extensions we typically use in a build:
CREATE EXTENSION postgis; CREATE EXTENSION fuzzystrmatch;