gorm2sql icon indicating copy to clipboard operation
gorm2sql copied to clipboard

auto generate sql from gorm model struct

Results 2 gorm2sql issues
Sort by recently updated
recently updated
newest added

type User struct { Id int Name string Profile *Profile `orm:"rel(one)"` // OneToOne relation Post []*Post `orm:"reverse(many)"` // 设置一对多反向关系 } type Profile struct { Id int Age int16 User *User...