diff --git a/pkg/dbal/DbalContext.php b/pkg/dbal/DbalContext.php index 0570a4463..d7d462aa1 100644 --- a/pkg/dbal/DbalContext.php +++ b/pkg/dbal/DbalContext.php @@ -170,10 +170,6 @@ public function createDataBaseTable() return; } - if ($this->getDbalConnection()->getDatabasePlatform()->hasNativeGuidType()) { - throw new \LogicException('The platform does not support UUIDs natively'); - } - $table = new Table($this->getTableName()); $table->addColumn('id', 'guid'); $table->addColumn('published_at', 'bigint');