【发布时间】:2020-08-27 04:15:37
【问题描述】:
在我的模型中,我有这样的字段:
HidePricingFromProfile bool `json:"hidePricingFromProfile"`
当我在数据库中更新模型时:
store.storage.DB.
Where("artist_account_id = ?", m.ArtistAccountID).
Assign(model).
FirstOrCreate(m).
Error
它只将布尔字段更新为真值。
这个字段在 DB 中是这样定义的:
hide_pricing_from_profile boolean default false not null
【问题讨论】: