Add custom Postgres schema support

This commit is contained in:
Istvan Richter
2020-03-18 06:04:53 +01:00
parent ce0aaeba7d
commit 31a2138f92
5 changed files with 12 additions and 0 deletions

View File

@@ -57,6 +57,7 @@ export async function init(synchronize?: boolean): Promise<IDatabaseCollections>
password: await GenericHelpers.getConfigValue('database.postgresdb.password') as string,
port: await GenericHelpers.getConfigValue('database.postgresdb.port') as number,
username: await GenericHelpers.getConfigValue('database.postgresdb.user') as string,
schema: await GenericHelpers.getConfigValue('database.postgresdb.schema') as string,
};
break;