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