| 152 | } |
| 153 | |
| 154 | type UserWithTableNamer struct { |
| 155 | gorm.Model |
| 156 | Name string |
| 157 | } |
| 158 | |
| 159 | func (UserWithTableNamer) TableName(namer schema.Namer) string { |
| 160 | return namer.TableName("user") |
nothing calls this directly
no outgoing calls
no test coverage detected