This repository was archived by the owner on Sep 7, 2021. It is now read-only.
This repository is currently being migrated. It's locked while the migration is in progress.
This repository was archived by the owner on Sep 7, 2021. It is now read-only.
Struct field with jsonb and postgres #411
Open
Description
Hello, I am having trouble using a struct as a field with jsonb. Take for example this struct:
type Card struct {
Addr Address `xorm:"jsonb notnull 'addr'" json:"addr"`
...
}
When I try to insert something into this table, it seems to be trying to treat it as a foreign table not jsonb. I get the error "no primary key for col addr"
Am I doing something wrong, or is there a way to do this? Here is a full example for what I am talking about: https://gist.github.com/wrunk/f5d4d5d648e41292f24be4c9b678edd8