Problem using Embarcadero ER/Studio with Postgres (With Serial PK)
- by Paul
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
)