Zend_Db_Table_Abstract and MySQL COMMENTs

INT=CHAR

New Member
I have built a query tool that enables a non-technical user to query parts of a database. I want to rename all the columns nicely. e.g.:\[code\]table_id` > "Table ID"forename > "Forename"phone > "Telephone"\[/code\]I have put all the information into the MySQL COMMENT field as in:\[code\]ALTER TABLE `table`CHANGE `field` `field` INT( 11 ) NOT NULL COMMENT 'Nice field name'\[/code\]I have accessed this but it seems rather heavy. Can it be accessed nicely?
 
Top