#8365 NCM v3 rename snipet to snippet

This commit is contained in:
Jonathan 2023-11-22 16:47:13 +01:00
parent 0a9e127576
commit a277e56672
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -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;