InsertForeignKey constructor
const
InsertForeignKey(})
Implementation
const InsertForeignKey(
this.localTableName,
this.foreignTableName, {
String? foreignKeyColumn,
this.onDeleteCascade = false,
this.onDeleteSetDefault = false,
}) : // Do not change this default without changing `foreignKeyColumnName`;
// it wasn't invoked because functions aren't `const`
foreignKeyColumn = foreignKeyColumn ?? '$foreignTableName${InsertTable.PRIMARY_KEY_COLUMN}';