gorm/association.go
2020-02-23 23:28:59 +08:00

10 lines
200 B
Go

package gorm
// Association Mode contains some helper methods to handle relationship things easily.
type Association struct {
}
func (db *DB) Association(column string) *Association {
return nil
}