An operation to perform on a foreign key when an update operation occurs
(mut self, action: ForeignKeyAction)
| 424 | |
| 425 | /// An operation to perform on a foreign key when an update operation occurs |
| 426 | pub fn on_update(mut self, action: ForeignKeyAction) -> Self { |
| 427 | self.on_update = Some(action); |
| 428 | self |
| 429 | } |
| 430 | |
| 431 | /// Set custom join ON condition. |
| 432 | /// |
no outgoing calls
no test coverage detected