Follow the ids from 1,000,000 (in the cq_action).
It should get to the message of what you're looking for.
Or run the following script:
Code:
select param from
cq_action
where
id >= 1000000 and
id <= 1000010 and
type = 126;
If this returns a result (only 1 result) then run this script:
Code:
update
cq_action
set
param = "INSERT YOUR MESSAGE HERE DO NOT REMOVE QUOTATION MARKS"
where
id >= 1000000 and
id <= 1000010 and
type = 126;