views:

131

answers:

1

Hello ...

I created a table using ER/STudio 8.0.3 ... The table has a serial pk (SERIAL/INTEGER in ER/Studio)... But the ER/Studio Physical Model generated convert the Serial to Integer... And The generated table in database has a integer pk, without auto-increment functionality...

Any idea?

Table generated :

CREATE TABLE test ( id integer NOT NULL )

Should be :

CREATE TABLE test ( id serial NOT NULL )