Skip to content

Commit f8ac4eb

Browse files
authored
Merge pull request #297 from msheakoski/patch-1
Fix reversed logic for native UUID detection
2 parents 7e9f646 + 517bc22 commit f8ac4eb

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)