association.go 200 B

123456789
  1. package gorm
  2. // Association Mode contains some helper methods to handle relationship things easily.
  3. type Association struct {
  4. }
  5. func (db *DB) Association(column string) *Association {
  6. return nil
  7. }