SetUpdatedAt sets the "updated_at" field.
(v time.Time)
| 362 | |
| 363 | // SetUpdatedAt sets the "updated_at" field. |
| 364 | func (u *SettingUpsertOne) SetUpdatedAt(v time.Time) *SettingUpsertOne { |
| 365 | return u.Update(func(s *SettingUpsert) { |
| 366 | s.SetUpdatedAt(v) |
| 367 | }) |
| 368 | } |
| 369 | |
| 370 | // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create. |
| 371 | func (u *SettingUpsertOne) UpdateUpdatedAt() *SettingUpsertOne { |