SetTitle sets the "title" field.
(s string)
| 183 | |
| 184 | // SetTitle sets the "title" field. |
| 185 | func (m *ModelMutation) SetTitle(s string) { |
| 186 | m.title = &s |
| 187 | } |
| 188 | |
| 189 | // Title returns the value of the "title" field in the mutation. |
| 190 | func (m *ModelMutation) Title() (r string, exists bool) { |