SetUpdatedAt sets the "updated_at" field.
(v time.Time)
| 983 | |
| 984 | // SetUpdatedAt sets the "updated_at" field. |
| 985 | func (u *NodeUpsertBulk) SetUpdatedAt(v time.Time) *NodeUpsertBulk { |
| 986 | return u.Update(func(s *NodeUpsert) { |
| 987 | s.SetUpdatedAt(v) |
| 988 | }) |
| 989 | } |
| 990 | |
| 991 | // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create. |
| 992 | func (u *NodeUpsertBulk) UpdateUpdatedAt() *NodeUpsertBulk { |