SetUpdatedAt sets the "updated_at" field.
(t time.Time)
| 41 | |
| 42 | // SetUpdatedAt sets the "updated_at" field. |
| 43 | func (tc *TaskCreate) SetUpdatedAt(t time.Time) *TaskCreate { |
| 44 | tc.mutation.SetUpdatedAt(t) |
| 45 | return tc |
| 46 | } |
| 47 | |
| 48 | // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil. |
| 49 | func (tc *TaskCreate) SetNillableUpdatedAt(t *time.Time) *TaskCreate { |
no outgoing calls
no test coverage detected