SetDeletedAt sets the "deleted_at" field.
(t time.Time)
| 52 | |
| 53 | // SetDeletedAt sets the "deleted_at" field. |
| 54 | func (sc *SettingCreate) SetDeletedAt(t time.Time) *SettingCreate { |
| 55 | sc.mutation.SetDeletedAt(t) |
| 56 | return sc |
| 57 | } |
| 58 | |
| 59 | // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil. |
| 60 | func (sc *SettingCreate) SetNillableDeletedAt(t *time.Time) *SettingCreate { |
no outgoing calls
no test coverage detected