Acabou sendo bastante fácil:
create table mytable (
id bigint not null constraint DF_mytblid default next value for mainseq,
code varchar(20) not null
)
ou se a tabela já estiver criada:
alter table mytable
add constraint DF_mytblid
default next value for mainseq
for id
(obrigado Matt Strom pela correção!)