From e86f4f7d621e8df0a9ca53ff92aa207a07bf385b Mon Sep 17 00:00:00 2001 From: Luca Date: Thu, 18 Mar 2021 11:32:23 +0100 Subject: [PATCH] Aumentato limite per campo note in scheda anagrafica --- update/2_4_23.sql | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/update/2_4_23.sql b/update/2_4_23.sql index 0ab522e70..1bc23d667 100644 --- a/update/2_4_23.sql +++ b/update/2_4_23.sql @@ -53,4 +53,7 @@ INSERT INTO `zz_api_resources` (`id`, `version`, `type`, `resource`, `class`, `e (NULL, 'v1', 'update', 'articolo', 'Modules\\Articoli\\API\\v1\\Articoli', '1'); -- Fix visualizzazione attività in dashboard -UPDATE `zz_segments` SET `clause` = '(orario_inizio BETWEEN \'|period_start|\' AND \'|period_end|\' OR orario_fine BETWEEN \'|period_start|\' AND \'|period_end|\')' WHERE `zz_segments`.`name` = 'Attività'; \ No newline at end of file +UPDATE `zz_segments` SET `clause` = '(orario_inizio BETWEEN \'|period_start|\' AND \'|period_end|\' OR orario_fine BETWEEN \'|period_start|\' AND \'|period_end|\')' WHERE `zz_segments`.`name` = 'Attività'; + +-- Aumentato limite per campo note in scheda anagrafica +ALTER TABLE `an_anagrafiche` CHANGE `note` `note` TEXT NOT NULL; \ No newline at end of file