pqb 0.40.3 → 0.40.4
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 +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6381,7 +6381,9 @@ const makeColumnsByType = (schema) => {
|
|
|
6381
6381
|
jsonb: schema.json,
|
|
6382
6382
|
smallserial: t.smallSerial,
|
|
6383
6383
|
serial: t.serial,
|
|
6384
|
-
bigserial: t.bigSerial
|
|
6384
|
+
bigserial: t.bigSerial,
|
|
6385
|
+
// requires citext extension
|
|
6386
|
+
citext: t.citext
|
|
6385
6387
|
};
|
|
6386
6388
|
};
|
|
6387
6389
|
|