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