rake-db 2.20.15 → 2.20.16
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.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -3219,7 +3219,7 @@ const processRakeDbConfig = (config) => {
|
|
|
3219
3219
|
const ct = "columnTypes" in config && config.columnTypes;
|
|
3220
3220
|
result.columnTypes = (typeof ct === "function" ? ct(
|
|
3221
3221
|
pqb.makeColumnTypes(pqb.defaultSchemaConfig)
|
|
3222
|
-
) : ct) || pqb.makeColumnTypes;
|
|
3222
|
+
) : ct) || pqb.makeColumnTypes(pqb.defaultSchemaConfig);
|
|
3223
3223
|
}
|
|
3224
3224
|
if (config.migrationId === "serial") {
|
|
3225
3225
|
result.migrationId = { serial: 4 };
|