有一张表customer_account
( postgres
) 是从 YII2 迁移过来的。
DDL:
CREATE TABLE public.test_table (
id INTEGER PRIMARY KEY NOT NULL DEFAULT nextval('test_table_id_seq'::regclass),
data JSONB
);
在 Go 项目中,我尝试从这张表中获取价值。
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{})
?