Created
January 20, 2025 13:32
-
-
Save nielsnuebel/30d313f8ce2a14f52578feb74ef02060 to your computer and use it in GitHub Desktop.
Kick Consent Manager Fix
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
ALTER TABLE `#__kickconsentmanager_categories` | |
CHANGE `checked_out` `checked_out` int(10) unsigned NULL DEFAULT NULL, | |
CHANGE `checked_out_time` `checked_out_time` datetime NULL DEFAULT NULL; | |
ALTER TABLE `#__kickconsentmanager_cookies` | |
CHANGE `checked_out` `checked_out` int(10) unsigned NULL DEFAULT NULL, | |
CHANGE `checked_out_time` `checked_out_time` datetime NULL DEFAULT NULL; | |
ALTER TABLE `#__kickconsentmanager_scripts` | |
CHANGE `checked_out` `checked_out` int(10) unsigned NULL DEFAULT NULL, | |
CHANGE `checked_out_time` `checked_out_time` datetime NULL DEFAULT NULL; | |
ALTER TABLE `#__kickconsentmanager_services` | |
CHANGE `checked_out` `checked_out` int(10) unsigned NULL DEFAULT NULL, | |
CHANGE `checked_out_time` `checked_out_time` datetime NULL DEFAULT NULL; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment