We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2157d0 commit 0366d17Copy full SHA for 0366d17
src/Schema.php
@@ -78,6 +78,7 @@ protected function findColumns($table)
78
a.attname AS column_name,
79
COALESCE(td.typname, tb.typname, t.typname) AS data_type,
80
COALESCE(td.typtype, tb.typtype, t.typtype) AS type_type,
81
+ (SELECT nspname FROM pg_namespace WHERE oid = COALESCE(td.typnamespace, tb.typnamespace, t.typnamespace)) AS type_scheme,
82
a.attlen AS character_maximum_length,
83
pg_catalog.col_description(c.oid, a.attnum) AS column_comment,
84
COALESCE(NULLIF(a.atttypmod, -1), t.typtypmod) AS modifier,
0 commit comments