0
我想在postgres中添加一個類型爲tsvector
的列,方法是在模型結構中定義一個字段。它看起來有點像:定義模型的tsvector類型列
type Issue struct {
...
TSV tsvector `json:"tsv"`
}
的原因是,我想用GORM的AutoMigrate
保持表上的最新發展時。有任何想法嗎?
我想在postgres中添加一個類型爲tsvector
的列,方法是在模型結構中定義一個字段。它看起來有點像:定義模型的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
感謝。我提出了一個編輯,使答案與問題的特定性更相關。 –