android-project-46group / api-server

MIT License
2 stars 0 forks source link

メンバーの id が 0 で返ってきている #49

Open kokoichi206 opened 1 year ago

kokoichi206 commented 1 year ago

id がゼロで返ってきている問題を解決する。

場合によっては連番ではなく guid の方がいいかもしれない

kokoichi206 commented 1 year ago

sql boiler でのパース

https://github.com/volatiletech/sqlboiler#pro-tips

外部キーは xxx_id になってるが、元々の id 部分も xxx_id になってる、テーブル名がよくないかもしれない。

実際、VSCode 上で以下のような警告が出ている。

// 箇所
type MemberInfoBind struct {
    models.MemberInfo `boil:",bind"`
    models.Member     `boil:",bind"`
}

警告

struct field MemberID repeats json tag "member_id" also at member_infos.go:28structtag
Screenshot 2023-01-30 at 23 15 20