don't specify tablespace

This commit is contained in:
Ajay
2022-05-04 16:03:56 -04:00
parent 2e4b7a0c9c
commit b0bcf2b684

View File

@@ -94,7 +94,6 @@ export class Postgres implements IDatabase {
await client.query(`CREATE DATABASE "${this.config.postgres.database}"
WITH
OWNER = ${this.config.postgres.user}
TABLESPACE = pg_default
CONNECTION LIMIT = -1;`
);
}