SetUpdatedAt sets the "updated_at" field.
(t time.Time)
| 48 | |
| 49 | // SetUpdatedAt sets the "updated_at" field. |
| 50 | func (uc *UserCreate) SetUpdatedAt(t time.Time) *UserCreate { |
| 51 | uc.mutation.SetUpdatedAt(t) |
| 52 | return uc |
| 53 | } |
| 54 | |
| 55 | // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil. |
| 56 | func (uc *UserCreate) SetNillableUpdatedAt(t *time.Time) *UserCreate { |
no outgoing calls
no test coverage detected