8 lines
312 B
MySQL
8 lines
312 B
MySQL
|
START TRANSACTION;
|
||
|
|
||
|
INSERT INTO `tconfig` (`token`, `value`) VALUES ('custom_docs_logo', 'default_docs.png');
|
||
|
INSERT INTO `tconfig` (`token`, `value`) VALUES ('custom_support_logo', 'default_support.png');
|
||
|
|
||
|
UPDATE talert_actions SET name='Monitoring Event' WHERE name='Pandora FMS Event';
|
||
|
|
||
|
COMMIT;
|