Skip to content

Instantly share code, notes, and snippets.

@nielsnuebel
Created January 20, 2025 13:32
Show Gist options
  • Save nielsnuebel/30d313f8ce2a14f52578feb74ef02060 to your computer and use it in GitHub Desktop.
Save nielsnuebel/30d313f8ce2a14f52578feb74ef02060 to your computer and use it in GitHub Desktop.
Kick Consent Manager Fix
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