ForeignKeyDefinition constructor

ForeignKeyDefinition({
  1. required String columnName,
  2. required String toTable,
  3. required String toColumn,
  4. String? onUpdate,
  5. String? onDelete,
})

Creates a new ForeignKeyDefinition.

Implementation

ForeignKeyDefinition({
  required this.columnName,
  required this.toTable,
  required this.toColumn,
  this.onUpdate,
  this.onDelete,
});