-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed missing default value for visible field
- Loading branch information
Franck Allimant
committed
Mar 21, 2022
1 parent
159bb71
commit 2b4681e
Showing
4 changed files
with
11 additions
and
5 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
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
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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
SET FOREIGN_KEY_CHECKS = 0; | ||
|
||
ALTER TABLE `selection` CHANGE `visible` `visible` tinyint(4) NOT NULL DEFAULT '1' AFTER `id`; | ||
ALTER TABLE `selection_container` CHANGE `visible` `visible` tinyint(4) NOT NULL DEFAULT '1' AFTER `id`; | ||
|
||
SET FOREIGN_KEY_CHECKS = 1; |