PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Problemi di tipo di dati Serial in DBeaver e PostgreSQL

Inoltre non sono riuscito a trovarlo nella GUI di DBeaver. Potresti emettere la seguente query sql sulla tua tabella:

ALTER TABLE public."Customer"
    ALTER COLUMN customer_id ADD GENERATED ALWAYS AS IDENTITY ( INCREMENT 1 START 1 MINVALUE 1 );