Hello,

I have to deal with a postgresql database, wich has 144 tables. Each table field has a comment like this: php CREATE TABLE classe ( id serial NOT NULL, -- Identifiant unique id_concours integer NOT NULL, -- Identifiant unique du concours libelle character varying(255) NOT NULL, -- Libellé de la classe CONSTRAINT classe_pkey PRIMARY KEY (id ), CONSTRAINT fk_classe_1 FOREIGN KEY (id_concours) REFERENCES concours (id) MATCH SIMPLE ON UPDATE CASCADE ON DELETE CASCADE ) WITH ( OIDS=FALSE ); I'm quiet sure that Phalcon\Model (or Phalcon\Model\Metadata) does not have a method for accessing these comments (for describing the field as a tooltip in a form for example). Am I wrong ?

This could be a nice feature ...