We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 963b94a commit 4e49f2aCopy full SHA for 4e49f2a
composer.json
@@ -22,7 +22,7 @@
22
"require": {
23
"php": "^7.2 || ^8.0",
24
"ext-pdo": "*",
25
- "doctrine/dbal": "^2.10"
+ "doctrine/dbal": "^2.10 || ^3.0"
26
},
27
"autoload": {
28
"psr-0": {
src/Platforms/CockroachPlatform.php
@@ -60,7 +60,9 @@ public function getIntegerTypeDeclarationSQL(array $column): string
60
}
61
62
public function getAdvancedForeignKeyOptionsSQL(ForeignKeyConstraint $foreignKey): string
63
- {$query = '';
+ {
64
+ // Waiting for resolved https://github.com/cockroachdb/cockroach/issues/31632
65
+ $query = '';
66
67
if ($foreignKey->hasOption('match')) {
68
$query .= ' MATCH ' . $foreignKey->getOption('match');
0 commit comments