In the file:
|
if ($this->getDbalConnection()->getDatabasePlatform()->hasNativeGuidType()) { |
|
throw new \LogicException('The platform does not support UUIDs natively'); |
|
} |
the test should be negated with a
!. Currently, the exception is thrown if a database DOES support UUIDs.
In the file:
enqueue-dev/pkg/dbal/DbalContext.php
Lines 173 to 175 in 3325424
!. Currently, the exception is thrown if a database DOES support UUIDs.