Answers for "Disabling foreign key checks while performing Sqlalchemy Upgrade"

0

Disabling foreign key checks while performing Sqlalchemy Upgrade

if you are user mysql, you can connect to mysql and use 
"SET GLOBAL FOREIGN_KEY_CHECKS = 0;" 
delete the db table you want, and again 
"SET GLOBAL FOREIGN_KEY_CHECKS = 1;"
This value verifies foreign relationships in the db tables.
Posted by: Guest on October-09-2021

Code answers related to "Disabling foreign key checks while performing Sqlalchemy Upgrade"

Browse Popular Code Answers by Language