From 21af7bff6b7f64323c96e6a935627def575c0915 Mon Sep 17 00:00:00 2001 From: MatteoPistorello Date: Fri, 14 Oct 2022 16:40:42 +0200 Subject: [PATCH] Aggiunte colonne Cellulare e Indirizzo in Anagrafiche --- update/2_4_37.sql | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/update/2_4_37.sql b/update/2_4_37.sql index 486482327..14f9d7c3d 100644 --- a/update/2_4_37.sql +++ b/update/2_4_37.sql @@ -12,3 +12,10 @@ INSERT INTO `zz_views` (`id_module`, `name`, `query`, `order`, `search`, `slow`, -- Aggiunto modulo Mappa INSERT INTO `zz_modules` (`id`, `name`, `title`, `directory`, `options`, `options2`, `icon`, `version`, `compatibility`, `order`, `parent`, `default`, `enabled`, `created_at`, `updated_at`, `use_notes`, `use_checklists`) VALUES (NULL, 'Mappa', 'Mappa', 'mappa', 'custom', '', 'fa fa-map', '2.4.36', '2.4.36', '10', NULL, '1', '1', '2022-10-12 17:22:11', '2022-10-12 17:23:52', '0', '0'); + +-- Aggiunte colonne cellulare e indirizzo in Anagrafiche +INSERT INTO `zz_views` (`id_module`, `name`, `query`, `order`, `search`, `slow`, `format`, `html_format`, `search_inside`, `order_by`, `visible`, `summable`, `default`) VALUES +((SELECT `id` FROM `zz_modules` WHERE `name`='Anagrafiche'), 'Indirizzo', 'an_anagrafiche.indirizzo', 13, 1, 0, 0, 0, '', '', 0, 0, 1); + +INSERT INTO `zz_views` (`id_module`, `name`, `query`, `order`, `search`, `slow`, `format`, `html_format`, `search_inside`, `order_by`, `visible`, `summable`, `default`) VALUES +((SELECT `id` FROM `zz_modules` WHERE `name`='Anagrafiche'), 'Cellulare', 'an_anagrafiche.cellulare', 14, 1, 0, 0, 0, '', '', 0, 0, 1); \ No newline at end of file