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.mjs
CHANGED
|
@@ -1687,8 +1687,8 @@ WHERE ${filterSchema("n.nspname")}`
|
|
|
1687
1687
|
table_schema "schemaName",
|
|
1688
1688
|
table_name "tableName",
|
|
1689
1689
|
column_name "name",
|
|
1690
|
-
udt_name "type",
|
|
1691
|
-
udt_schema "typeSchema",
|
|
1690
|
+
COALESCE(domain_name, udt_name) "type",
|
|
1691
|
+
COALESCE(domain_schema, udt_schema) "typeSchema",
|
|
1692
1692
|
data_type "dataType",
|
|
1693
1693
|
character_maximum_length AS "maxChars",
|
|
1694
1694
|
numeric_precision AS "numericPrecision",
|
|
@@ -1939,7 +1939,7 @@ ORDER BY c.conname`);
|
|
|
1939
1939
|
d.typname AS "name",
|
|
1940
1940
|
t.typname AS "type",
|
|
1941
1941
|
s.nspname AS "typeSchema",
|
|
1942
|
-
.typnotnull AS "notNull",
|
|
1942
|
+
d.typnotnull AS "notNull",
|
|
1943
1943
|
d.typcategory = 'A' AS "isArray",
|
|
1944
1944
|
character_maximum_length AS "maxChars",
|
|
1945
1945
|
numeric_precision AS "numericPrecision",
|