I would like the DDL generated by hibernate to include support for comments. I am using PostgreSQL (Oracle has the same feature) and would like to see statements such as
Code:
COMMENT ON TABLE mytable IS 'This is my table.';
being generated. There doesn't appear to be a place in the DTD that allows for this. The closest thing is the META tag which allows for a class description in generated java classes.
Code:
<meta attribute="class-description">
Javadoc for the Person class
@author Frodo
</meta>
I've looked at a few different places and it appears this functionality is not present in hibernate 2.1. Could someone pleace point me in the right direction or suggest how I can request this feature?
Thanks!