SetNull sets a column as null value.
(column string)
| 408 | |
| 409 | // SetNull sets a column as null value. |
| 410 | func (u *UpdateSet) SetNull(column string) *UpdateSet { |
| 411 | u.UpdateBuilder.SetNull(column) |
| 412 | return u |
| 413 | } |
| 414 | |
| 415 | // SetIgnore sets the column to itself. For example, "id" = "users"."id". |
| 416 | func (u *UpdateSet) SetIgnore(name string) *UpdateSet { |
no outgoing calls