有表customer_account
(postgres
)哪一個是從YII2遷移的。Golang:gorm use尋找非模板遷移表(&)
DDL:
CREATE TABLE public.test_table (
id INTEGER PRIMARY KEY NOT NULL DEFAULT nextval('test_table_id_seq'::regclass),
data JSONB
);
在旅途中的項目,我試圖從該表中獲取價值。
type TableGo struct {
Id int
Data string `gorm:"type:jsonb"`
}
table := TableGo{}
db.Where("id = ?", 75).Find(&table)
println(table.Data)
但有(pq: relation "table_gos" does not exist)
如何我可以鏈接結構表,而db.AutoMigrate(&TableGo{})
?