Having this sample table:
create table testingCase (
id integer not null GENERATED ALWAYS AS IDENTITY,
constraint pk_testingCase primary key (id),
description varchar(60)
);
I want the id to be AUTO INCREMENTED by 2 (for example), in SQL Server that'd be IDENTITY (1, 2).
How can this be achieved utilizing PostgreSQL?