onDelete method

ColumnDefinition onDelete(
  1. String action
)

Specifies the action to take when the foreign key is deleted.

Implementation

ColumnDefinition onDelete(String action) {
  _onDeleteAction = action;
  return this;
}