docs: update.md (#5672)

One should activate foreign key checks after everything is done, not deactivate again
This commit is contained in:
Mik13
2021-11-02 22:38:41 +01:00
committed by GitHub
parent a48b35b74e
commit 2b34065e60
+1 -1
View File
@@ -223,7 +223,7 @@ SET FOREIGN_KEY_CHECKS = 0;
And this, at the very end of the file (after the last `INSERT INTO...` statement:
```
SET FOREIGN_KEY_CHECKS = 0
SET FOREIGN_KEY_CHECKS = 1
```
**Notes:**