第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

gorm 未在數(shù)據(jù)庫模式中建立外鍵關(guān)系

gorm 未在數(shù)據(jù)庫模式中建立外鍵關(guān)系

Go
開心每一天1111 2023-08-21 14:42:46
我有以下2個gorm型號// Day is a corresponding day entrytype Day struct {    gorm.Model    Dateday   string         `json:"dateday" gorm:"type:date;NOT NULL"`    Nameday   string         `json:"nameday" gorm:"type:varchar(100);NOT NULL"`    Something sql.NullString `json:"something"`    Holyday   bool           `json:"holyday"`}type Week struct {    gorm.Model    Start Day    End   Day}但是,執(zhí)行遷移后db.AutoMigrate(&Day{})db.AutoMigrate(&Week{})登錄數(shù)據(jù)庫并描述表weekspostgres-# \d+ weeks;                                                          Table "public.weeks"   Column   |           Type           | Collation | Nullable |              Default              | Storage | Stats target | Description------------+--------------------------+-----------+----------+-----------------------------------+---------+--------------+------------- id         | integer                  |           | not null | nextval('weeks_id_seq'::regclass) | plain   |              | created_at | timestamp with time zone |           |          |                                   | plain   |              | updated_at | timestamp with time zone |           |          |                                   | plain   |              | deleted_at | timestamp with time zone |           |          |                                   | plain   |              |Indexes:    "weeks_pkey" PRIMARY KEY, btree (id)    "idx_weeks_deleted_at" btree (deleted_at)我沒有看到start/end字段,它大概也應(yīng)該是表的外鍵day(確實(shí)存在)這是為什么?
查看完整描述

1 回答

?
米琪卡哇伊

TA貢獻(xiàn)1998條經(jīng)驗(yàn) 獲得超6個贊

要設(shè)置一對一關(guān)系,您還需要將 id 字段添加到結(jié)構(gòu)中。默認(rèn)情況下,您應(yīng)該將其命名為[YourFieldName]ID,如果您想為 id 字段使用其他名稱,您可以通過標(biāo)簽來完成,例如:


type Week struct {

? ? gorm.Model

? ? Start? ? Day

? ? End? ? ? Day `gorm:"foreignkey:EndRefer"`

? ? StartID? uint

? ? EndRefer uint

}

但要注意,AutoMigrate不能創(chuàng)建外鍵約束。



查看完整回答
反對 回復(fù) 2023-08-21
  • 1 回答
  • 0 關(guān)注
  • 169 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號