Enable or disable a module
The following snippets enable or disable a module.
Enable the module with the name example:
UPDATE `system` SET status=1 WHERE name='example';Disable the module example:
UPDATE `system` SET status=0 WHERE name='example';