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
message_ibfk_6
Migration script produces the following error:
(1064): Syntax error near 'CONSTRAINT `message_ibfk_6`'
Run the v0.63 migration script on a v0.62 DB.
Migration script just works.
The text was updated successfully, but these errors were encountered:
@0xEAB Thanks for reporting.
This may have to do with earlier MySQL versions having a different syntax for removing foreign key constraints.
Try with this and let me know if that works please:
ALTER TABLE `message` DROP FOREIGN KEY IF EXISTS `message_ibfk_6`, DROP INDEX IF EXISTS `message_ibfk_6`;
Sorry, something went wrong.
thanks, working fine here
No branches or pull requests
💥 BC Break Report
Required Information
Summary
Migration script produces the following error:
How to reproduce
Run the v0.63 migration script on a v0.62 DB.
Expected behaviour
Migration script just works.
The text was updated successfully, but these errors were encountered: