on Update
This corresponds to the ON UPDATE clause in a FOREIGN KEY definition.
Example
foreignKey(childColumnA).onUpdate(ForeignKeyAction.CASCADE)Content copied to clipboard
Return
The ForeignKeyConstraint instance for further chaining.
Author
MOHAMMAD AZIM ANSARI
Parameters
action
The action to perform (e.g., ForeignKeyAction.CASCADE, ForeignKeyAction.NO_ACTION).