将默认值设置为自定义顺序

Question regarding the declaration of primary key with default value.

Using cockroachDB, we can create sequence to basically have ID starting from 1, with regular increment of 1.

create sequence for cockroachdb

Trying to create my model with default value nextval('sequence_name')

`gorm:"DEFAULT:nextval('sequence_name')"`

Tried this one above, but it's not working (edited)