We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94634fe commit f6777afCopy full SHA for f6777af
src/Illuminate/Database/Schema/Grammars/PostgresGrammar.php
@@ -115,6 +115,7 @@ public function compileTypes()
115
.'left join pg_type el on el.oid = t.typelem '
116
.'left join pg_class ce on ce.oid = el.typrelid '
117
."where ((t.typrelid = 0 and (ce.relkind = 'c' or ce.relkind is null)) or c.relkind = 'c') "
118
+ ."and not exists (select 1 from pg_depend d where d.objid in (t.oid, t.typelem) and d.deptype = 'e') "
119
."and n.nspname not in ('pg_catalog', 'information_schema')";
120
}
121
0 commit comments