From a277e56672b1875ddc8fefac9b2f9bb2d7f61af8 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 22 Nov 2023 16:47:13 +0100 Subject: [PATCH] #8365 NCM v3 rename snipet to snippet --- pandora_console/extras/mr/67.sql | 2 +- pandora_console/pandoradb.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/extras/mr/67.sql b/pandora_console/extras/mr/67.sql index 565882214a..00a357d18a 100644 --- a/pandora_console/extras/mr/67.sql +++ b/pandora_console/extras/mr/67.sql @@ -4,7 +4,7 @@ ALTER TABLE `tncm_queue` ADD COLUMN `id_agent_data` bigint unsigned AFTER `id_script`; ALTER TABLE `tncm_queue` -ADD COLUMN `snipet` TEXT NULL AFTER `scheduled`; +ADD COLUMN `snippet` TEXT NULL AFTER `scheduled`; CREATE TABLE IF NOT EXISTS `tncm_agent_data_template` ( `id` SERIAL, diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index aeb33e9a10..d009554cc6 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -4270,7 +4270,7 @@ CREATE TABLE IF NOT EXISTS `tncm_queue` ( `id_agent_data` bigint unsigned, `utimestamp` INT UNSIGNED NOT NULL, `scheduled` INT UNSIGNED DEFAULT NULL, - `snipet` TEXT NULL, + `snippet` TEXT NULL, FOREIGN KEY (`id_agent`) REFERENCES `tagente`(`id_agente`) ON UPDATE CASCADE ON DELETE CASCADE, FOREIGN KEY (`id_script`) REFERENCES `tncm_script`(`id`) ON UPDATE CASCADE ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;