Aggiunta valori buffer datatables

This commit is contained in:
Pek5892 2023-01-13 09:19:25 +01:00
parent b3845575e1
commit beee232863
1 changed files with 4 additions and 1 deletions

View File

@ -87,4 +87,7 @@ ORDER BY
INSERT INTO `zz_settings` (`id`, `nome`, `valore`, `tipo`, `editable`, `sezione`, `order`, `help`) VALUES (NULL, 'Visualizza promemoria', '1', 'boolean', '1', 'Applicazione', '5', '');
-- Aggiunta del riferimento utente nei movimenti
ALTER TABLE `mg_movimenti` ADD `idutente` INT NULL DEFAULT NULL;
ALTER TABLE `mg_movimenti` ADD `idutente` INT NULL DEFAULT NULL;
-- Aggiunta valori buffer Datatables
UPDATE `zz_settings` SET `tipo` = 'list[5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100,250,500,1000]' WHERE `zz_settings`.`nome` = 'Lunghezza in pagine del buffer Datatables';