Golang's gorm library, what is the default size of string?

what is the default size of the gorm library for golang? what is the default size of string? Is it 255?
http://gorm.io/zh_CN/docs/mod.

clipboard.png

type:varchar(100)type:varchar(255)

clipboard.png

Jan.11,2022

the default generated string is mapped to varchar (255).


look at the source code of gorm

Menu