SetCreatedAt sets the "created_at" field.
(t time.Time)
| 27 | |
| 28 | // SetCreatedAt sets the "created_at" field. |
| 29 | func (tc *TaskCreate) SetCreatedAt(t time.Time) *TaskCreate { |
| 30 | tc.mutation.SetCreatedAt(t) |
| 31 | return tc |
| 32 | } |
| 33 | |
| 34 | // SetNillableCreatedAt sets the "created_at" field if the given value is not nil. |
| 35 | func (tc *TaskCreate) SetNillableCreatedAt(t *time.Time) *TaskCreate { |
no outgoing calls
no test coverage detected