relaltions.go 195 B

123456789101112131415
  1. package orm
  2. type relType int8
  3. const (
  4. hasOne relType = iota << 1
  5. hasMany relType = iota << 1
  6. belongsTo relType = iota << 1
  7. )
  8. type rel struct {
  9. *tbl
  10. }
  11. type relations map[relType]*rel