Skip to content

Commit 4e49f2a

Browse files
committed
Release 0.2.0
1 parent 963b94a commit 4e49f2a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"require": {
2323
"php": "^7.2 || ^8.0",
2424
"ext-pdo": "*",
25-
"doctrine/dbal": "^2.10"
25+
"doctrine/dbal": "^2.10 || ^3.0"
2626
},
2727
"autoload": {
2828
"psr-0": {

src/Platforms/CockroachPlatform.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ public function getIntegerTypeDeclarationSQL(array $column): string
6060
}
6161

6262
public function getAdvancedForeignKeyOptionsSQL(ForeignKeyConstraint $foreignKey): string
63-
{$query = '';
63+
{
64+
// Waiting for resolved https://github.com/cockroachdb/cockroach/issues/31632
65+
$query = '';
6466

6567
if ($foreignKey->hasOption('match')) {
6668
$query .= ' MATCH ' . $foreignKey->getOption('match');

0 commit comments

Comments
 (0)