What steps will reproduce the problem?
1. Generate SQL code for Postgresql using tables having foreign keys
What is the expected output? What do you see instead?
We get:
<< ALTER TABLE "table" ADD FOREIGN KEY (columnName) REFERENCES "table2"
("columnNameID"); >>
but should be:
<< ALTER TABLE "table" ADD FOREIGN KEY ("columnName") REFERENCES "table2"
("columnNameID"); >>
Quotes are missing at foreign key column.
What version of the product are you using? On what operating system?
version 2.3.2
Please provide any additional information below.
This will not be of any issue to anyone naming their columns in lowercase only.
Original issue reported on code.google.com by i...@amarosia.com on 19 Apr 2009 at 11:57
Original issue reported on code.google.com by
i...@amarosia.com
on 19 Apr 2009 at 11:57