We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fbcef6e + bc5f35c commit b6ea86eCopy full SHA for b6ea86e
src/Symfony/Component/Messenger/Transport/Doctrine/Connection.php
@@ -368,6 +368,7 @@ private function getSchema(): Schema
368
$table->addColumn('headers', self::$useDeprecatedConstants ? Type::TEXT : Types::TEXT)
369
->setNotnull(true);
370
$table->addColumn('queue_name', self::$useDeprecatedConstants ? Type::STRING : Types::STRING)
371
+ ->setLength(190) // MySQL 5.6 only supports 191 characters on an indexed column in utf8mb4 mode
372
373
$table->addColumn('created_at', self::$useDeprecatedConstants ? Type::DATETIME : Types::DATETIME_MUTABLE)
374
0 commit comments