Version: 2.0 (using Devel) Installed from: Compiled sources Compiler: gcc 4.3.1 OS: Linux The SQL code generator only generates empty CREATE TABLE statements and comments. Any field/index/reference information is omitted: -- -- TABLE: bad_keywords -- Contains a list of words that should not be used as keywords. Such words are -- excluded when performing context scanning for keywords. -- CREATE TABLE bad_keywords ( ); In prior version of Umbrello, 1.5.x, the same DB schema generates: -- -- TABLE: bad_keywords -- Contains a list of words that should not be used as keywords. Such words are -- excluded when performing context scanning for keywords. -- CREATE TABLE bad_keywords ( ); Also, SQL code generator creates CREATE TABLE statements per database type. For example, the following files are created: boolean.sql decimal(16,2).sql Here is the content of decimal(16,2).sql: CREATE TABLE decimal_16_2_ ( );
*** This bug has been marked as a duplicate of bug 162373 ***