Det visade sig vara lätt nog:
create table mytable (
id bigint not null constraint DF_mytblid default next value for mainseq,
code varchar(20) not null
)
eller om tabellen redan är skapad:
alter table mytable
add constraint DF_mytblid
default next value for mainseq
for id
(tack Matt Ström för rättelsen!)