PostgreSQL has a special piece of a functionality called COMMENT which attaches metadata to an identifier or any type (schema, table, column, function, type, domain, etc). It looks like this,
COMMENT ON TABLE mytable IS 'This is my table.';
Is there a maximum size for the comment?