Skip to content

Commit 1d0b1ac

Browse files
authored
Remove check for native UUIDs
1 parent 40cc534 commit 1d0b1ac

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Diff for: 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)