From 8582e89de5b60a63de6a18ae4a46a02729ea209a Mon Sep 17 00:00:00 2001 From: valentina Date: Tue, 16 Jul 2024 16:37:32 +0200 Subject: [PATCH] Fix campo id visibile in vista Fasce orarie --- update/2_5_3.sql | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/update/2_5_3.sql b/update/2_5_3.sql index f6b708238..84785c733 100644 --- a/update/2_5_3.sql +++ b/update/2_5_3.sql @@ -116,4 +116,7 @@ INSERT INTO `zz_settings` (`nome`, `valore`, `tipo`, `editable`, `sezione`, `ord INSERT INTO `zz_settings_lang` (`id_lang`, `id_record`, `title`, `help`) VALUES ((SELECT `valore` FROM `zz_settings` WHERE `nome` = 'Lingua'), (SELECT `id` FROM `zz_settings` WHERE `nome`='Utilizza codice articolo come barcode'), 'Utilizza codice articolo come barcode', ''); -- Aggiunte note sessioni -ALTER TABLE `in_interventi_tecnici` ADD `note` TEXT NOT NULL AFTER `tipo_scontokm`; \ No newline at end of file +ALTER TABLE `in_interventi_tecnici` ADD `note` TEXT NOT NULL AFTER `tipo_scontokm`; + +-- Fix campo id visibile in vista Fasce orarie +UPDATE `zz_views` SET `visible` = '0' WHERE `zz_views`.`name` = 'id' AND `zz_views`.`id_module` = (SELECT `id` FROM `zz_modules` WHERE `name` = 'Fasce orarie') \ No newline at end of file