[DB][FKEY] Temporarily disable foreign key mapping, as there seems to be a bug in doctrine, which is under investigation

This commit is contained in:
2021-04-11 18:32:28 +00:00
parent faa362e2e2
commit e2e561e663
2 changed files with 2 additions and 2 deletions

View File

@@ -109,7 +109,7 @@ class SchemaDefDriver extends StaticPHPDriver implements CompilerPassInterface
}
}
if ($opts['foreign key'] ?? false) {
if (false && $opts['foreign key'] ?? false) {
foreach (['target', 'multiplicity'] as $f) {
if (!isset($opts[$f])) {
throw new \Exception("{$class_name}.{$name} doesn't have the required field `{$f}`");