We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a migration that drops an index in the version 8.3.19
https://github.com/neos/neos-development-collection/pull/4236/files
ALTER TABLE neos_contentrepository_domain_model_nodedata DROP INDEX IDX_CE6515692D45FE4D, ADD UNIQUE INDEX UNIQ_CE6515692D45FE4D (movedto)
If we run a ./flow doctrine:migrate when the index does not exist then it will run into an error.
./flow doctrine:migrate
Add a check if the index exists and only drop when the index exist to prevent the exception while running ./flow doctrine:migrate.
No response
- Flow: 8.3.13 - Neos: 8.3.19 - PHP: 8.1 / 8.3
See also https://neos-project.slack.com/archives/C050C8FEK/p1737539317664469
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there an existing issue for this?
Current Behavior
There is a migration that drops an index in the version 8.3.19
https://github.com/neos/neos-development-collection/pull/4236/files
ALTER TABLE neos_contentrepository_domain_model_nodedata DROP INDEX IDX_CE6515692D45FE4D, ADD UNIQUE INDEX UNIQ_CE6515692D45FE4D (movedto)
If we run a
./flow doctrine:migrate
when the index does not exist then it will run into an error.Expected Behavior
Add a check if the index exists and only drop when the index exist to prevent the exception while running
./flow doctrine:migrate
.Steps To Reproduce
No response
Environment
Anything else?
See also https://neos-project.slack.com/archives/C050C8FEK/p1737539317664469
The text was updated successfully, but these errors were encountered: