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