2020-01-29 14:22:44 +03:00
|
|
|
package gorm
|
|
|
|
|
|
|
|
// Association Mode contains some helper methods to handle relationship things easily.
|
|
|
|
type Association struct {
|
|
|
|
}
|
2020-02-23 18:28:35 +03:00
|
|
|
|
|
|
|
func (db *DB) Association(column string) *Association {
|
|
|
|
return nil
|
|
|
|
}
|