rake-db 2.4.10 → 2.4.12
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 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1715,8 +1715,8 @@ WHERE ${filterSchema("n.nspname")}`
|
|
|
1715
1715
|
table_schema "schemaName",
|
|
1716
1716
|
table_name "tableName",
|
|
1717
1717
|
column_name "name",
|
|
1718
|
-
udt_name "type",
|
|
1719
|
-
udt_schema "typeSchema",
|
|
1718
|
+
COALESCE(domain_name, udt_name) "type",
|
|
1719
|
+
COALESCE(domain_schema, udt_schema) "typeSchema",
|
|
1720
1720
|
data_type "dataType",
|
|
1721
1721
|
character_maximum_length AS "maxChars",
|
|
1722
1722
|
numeric_precision AS "numericPrecision",
|
|
@@ -1967,7 +1967,7 @@ ORDER BY c.conname`);
|
|
|
1967
1967
|
d.typname AS "name",
|
|
1968
1968
|
t.typname AS "type",
|
|
1969
1969
|
s.nspname AS "typeSchema",
|
|
1970
|
-
.typnotnull AS "notNull",
|
|
1970
|
+
d.typnotnull AS "notNull",
|
|
1971
1971
|
d.typcategory = 'A' AS "isArray",
|
|
1972
1972
|
character_maximum_length AS "maxChars",
|
|
1973
1973
|
numeric_precision AS "numericPrecision",
|