forked from ClusterCockpit/cc-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable foreign key check while updating database
- Loading branch information
Michael Schwarz
committed
Mar 14, 2024
1 parent
5004e44
commit ce79242
Showing
2 changed files
with
4 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
SET FOREIGN_KEY_CHECKS = 0; | ||
ALTER TABLE tag MODIFY id INTEGER; | ||
SET FOREIGN_KEY_CHECKS = 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
SET FOREIGN_KEY_CHECKS = 0; | ||
ALTER TABLE tag MODIFY id INTEGER AUTO_INCREMENT; | ||
SET FOREIGN_KEY_CHECKS = 1; |