-1
After creating the column idpagamentoCielo
as a primary key, I could not add property auto-increment
to the column.
How can I assign the property auto-increment
to the column idpagamentoCielo
?
Note: the database is postgresql
Automatic generation SQL:
CREATE TABLE public.pagamentocielo (
idpagamentocielo int NOT NULL,
CONSTRAINT pagamentocielo_pk PRIMARY KEY (idpagamentocielo)
)
WITH (
OIDS=FALSE
);