Как установить указанный ключ c в структуре в качестве внешнего ключа в пчеле go orm? - PullRequest
0 голосов
/ 17 апреля 2020

Я хочу установить адрес структуры 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"`
}

1 Ответ

1 голос
/ 17 апреля 2020

Посмотрите, работает ли это:

type Coins struct {
    Id        int       `orm:"auto"`
    Accouts   *Accounts `orm:"rel(fk)"`
    Address   string `orm:"pk;auto;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:"pk;auto"`
    Address                  string    `orm:"index;unique" json:"address"`
    Type                     string    `json:"type"`
}
...