vouchington-tooling 0.0.11 → 0.0.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.
|
@@ -22,7 +22,7 @@ export async function readColumns(query) {
|
|
|
22
22
|
SELECT
|
|
23
23
|
target.relname AS table_name,
|
|
24
24
|
pg_attribute.attname AS column_name,
|
|
25
|
-
format_type(pg_attribute.atttypid, pg_attribute.
|
|
25
|
+
format_type(pg_attribute.atttypid, pg_attribute.atttypmod) AS data_type,
|
|
26
26
|
NOT pg_attribute.attnotnull AS nullable,
|
|
27
27
|
pg_get_expr(pg_attrdef.adbin, pg_attrdef.adrelid) AS default_expression,
|
|
28
28
|
pg_attribute.attidentity AS identity,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vouchington-tooling",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "Vouchington CLI and extractable tooling libraries.",
|
|
5
5
|
"homepage": "https://github.com/vouchington/vouchington-tooling/tree/main/packages/vouchington-tooling#readme",
|
|
6
6
|
"bugs": {
|