Я хочу установить адрес структуры Coins как внешний ключ адреса структуры счетов, как его задать в bee go orm?
type Coins struct {
Id int `orm:"auto"`
Address string `orm:"rel(fk);on_delete(cascade);on_update(cascade);index" json:"address"`
Symbol string `json:"symbol"`
Amount float64 `orm:"digits(64);decimals(6)" json:"amount"`
CreatedAt time.Time `orm:"auto_now_add;type(datetime)"`
UpdatedAt time.Time `orm:"auto_now_add;type(datetime)"`
}
type Accounts struct {
Id int `orm:"auto"`
Address string `orm:"index;unique" json:"address"`
Type string `json:"type"`
}