Bootstrap

gorm中一对一,多对多关系

1、一对一 : 属于 belongsTo

package main
// belongsTo
type Dog struct {
    //舔狗
	gorm.Model
	Name string

}

type GirlGod struct {
    //女神
	gorm.Model
	Name string
}

func (it *ServiceContext) AutoMigrate() {
   
	it.DB.AutoMigrate(&Dog{
   },&GirlGod{
   }) //创建这两张表,它们之间没有任何关联
}

// ==========================================================================================
// belongsTo
;