SetCreatedAt sets the "created_at" field.
(t time.Time)
| 24 | |
| 25 | // SetCreatedAt sets the "created_at" field. |
| 26 | func (sc *SettingCreate) SetCreatedAt(t time.Time) *SettingCreate { |
| 27 | sc.mutation.SetCreatedAt(t) |
| 28 | return sc |
| 29 | } |
| 30 | |
| 31 | // SetNillableCreatedAt sets the "created_at" field if the given value is not nil. |
| 32 | func (sc *SettingCreate) SetNillableCreatedAt(t *time.Time) *SettingCreate { |
no outgoing calls
no test coverage detected