@tray2 What's the point of allowing to comment a table column if there's no way to re-use this information ?
Which PostGreSQL, it's possible to retrieve comments this way:
SELECT
c.table_schema,
st.relname AS TableName,
c.column_name,
pgd.description
FROM pg_catalog.pg_statio_all_tables AS st
INNER JOIN information_schema.columns c
ON c.table_schema = st.schemaname
AND c.table_name = st.relname
LEFT join pg_catalog.pg_description pgd
ON pgd.objoid=st.relid
AND pgd.objsubid=c.ordinal_position
WHERE st.relname = 'YourTableName';
\DB::select("SELECT COLUMN_COMMENT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = '<your database>' AND TABLE_NAME = '<your table>' AND COLUMN_NAME = 'your column'");