Is there a way to configure Eclipse JPA DDL generation to specify a trailing ';' for each statement on the output file? For example:
CREATE TABLE PHYSICAL_OBJECT (ID BIGINT NOT NULL, PRIMARY KEY (ID))
would become
CREATE TABLE PHYSICAL_OBJECT (ID BIGINT NOT NULL, PRIMARY KEY (ID));