### Proposed new feature or change Add new method ```php ColumnDefinitionBuilderInterface::buildForeignKey(ForeignKey $fk): string ``` to build foreign key definitions to create tables, like ```sql CONSTRAINT {{{$fkName}}} FOREIGN KEY ([[id]]) REFERENCES {{{$referenceTableName}}}` ([[id]]) ON DELETE CASCADE ON UPDATE RESTRICT ``` Related with https://github.com/yiisoft/translator-message-db/blob/7060706db0a481d3f80c3a120e28ac812ff41dbc/src/DbSchemaManager.php#L129-L141
Proposed new feature or change
Add new method
to build foreign key definitions to create tables, like
Related with https://github.com/yiisoft/translator-message-db/blob/7060706db0a481d3f80c3a120e28ac812ff41dbc/src/DbSchemaManager.php#L129-L141