我想通过在模型结构中定义一个字段在postgres中添加tsvector
类型的列。它看起来像:
type Issue struct {
...
TSV tsvector `json:"tsv"`
}
原因是我想在开发过程中使用gorm的
AutoMigrate
来使表保持最新。有任何想法吗? 最佳答案
type Address struct {
TSV string `gorm:"type:tsvector"`
}
另请参阅https://github.com/jinzhu/gorm/blob/master/dialects/postgres/postgres.go,它应该类似于hstore,jsonb
关于go - 为模型定义tsvector类型列,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46683677/