@openstax/ts-utils 1.21.7 → 1.21.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12,7 +12,9 @@ export const postgresConnection = (initializer) => (configProvider) => {
|
|
|
12
12
|
database: await resolveConfigValue(config.database),
|
|
13
13
|
username: await resolveConfigValue(config.username),
|
|
14
14
|
password: await resolveConfigValue(config.password),
|
|
15
|
-
transform:
|
|
15
|
+
transform: {
|
|
16
|
+
column: { to: postgres.fromCamel, from: postgres.toCamel },
|
|
17
|
+
},
|
|
16
18
|
}));
|
|
17
19
|
const connections = [];
|
|
18
20
|
const sql = once(async () => {
|