Skip to content

Commit 5ea02f4

Browse files
authored
Merge pull request #297 from msheakoski/patch-1
Fix reversed logic for native UUID detection
2 parents f298781 + 1d0b1ac commit 5ea02f4

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pkg/dbal/DbalContext.php

-4
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,6 @@ public function createDataBaseTable()
170170
return;
171171
}
172172

173-
if ($this->getDbalConnection()->getDatabasePlatform()->hasNativeGuidType()) {
174-
throw new \LogicException('The platform does not support UUIDs natively');
175-
}
176-
177173
$table = new Table($this->getTableName());
178174
$table->addColumn('id', 'guid');
179175
$table->addColumn('published_at', 'bigint');

0 commit comments

Comments
 (0)