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