-- drop all
drop table if exists foo;

-- apply changes
create table foo (
  col1                          varchar(4) generated by default as identity not null,
  col2                          varchar(30) not null,
  col3                          varchar(30) not null,
  constraint pk_foo primary key (col1)
);
comment on table foo is 'comment';

