Set sets a column to a given value.
(column string, v any)
| 396 | |
| 397 | // Set sets a column to a given value. |
| 398 | func (u *UpdateSet) Set(column string, v any) *UpdateSet { |
| 399 | u.UpdateBuilder.Set(column, v) |
| 400 | return u |
| 401 | } |
| 402 | |
| 403 | // Add adds a numeric value to the given column. |
| 404 | func (u *UpdateSet) Add(column string, v any) *UpdateSet { |
no outgoing calls
no test coverage detected