SetCreatedAt sets the "created_at" field.
(t time.Time)
| 34 | |
| 35 | // SetCreatedAt sets the "created_at" field. |
| 36 | func (uc *UserCreate) SetCreatedAt(t time.Time) *UserCreate { |
| 37 | uc.mutation.SetCreatedAt(t) |
| 38 | return uc |
| 39 | } |
| 40 | |
| 41 | // SetNillableCreatedAt sets the "created_at" field if the given value is not nil. |
| 42 | func (uc *UserCreate) SetNillableCreatedAt(t *time.Time) *UserCreate { |
no outgoing calls
no test coverage detected