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
SeaQL/sea-orm#191
Schema to reproduce:
CREATE TABLE `table_2` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE `table_1` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `table_2_id` bigint(20) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `table_2_id` (`table_2_id`), CONSTRAINT `table_2_id` FOREIGN KEY (`table_2_id`) REFERENCES `table_2` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
The text was updated successfully, but these errors were encountered:
#18 Fix foreign key query panic
f5cb8b4
Seemingly resolved.
Sorry, something went wrong.
No branches or pull requests
SeaQL/sea-orm#191
Schema to reproduce:
The text was updated successfully, but these errors were encountered: