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

