From 15d55d140bc19648b2854085be24f3e863897540 Mon Sep 17 00:00:00 2001 From: Matteo Date: Mon, 25 Mar 2024 11:43:12 +0100 Subject: [PATCH] Fix query inserimento adattatore file locali --- update/2_5.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update/2_5.sql b/update/2_5.sql index c3af14973..9bd24d94a 100644 --- a/update/2_5.sql +++ b/update/2_5.sql @@ -2340,8 +2340,8 @@ ALTER TABLE `zz_storage_adapters` ADD PRIMARY KEY (`id`); ALTER TABLE `zz_storage_adapters` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -INSERT INTO `zz_storage_adapters` (`id`, `name`, `class`, `options`, `can_delete`, `is_default`, `is_local`) VALUES -(1, 'Adattatore locale', '\Modules\FileAdapters\Adapters\LocalAdapter', '{ \"directory\":\"/files\" }', 0, 1, 1); +INSERT INTO `zz_storage_adapters` (`id`, `name`, `class`, `options`, `can_delete`, `is_default`, `is_local`, `deleted_at`) VALUES +(1, 'Adattatore locale', '\\Modules\\FileAdapters\\Adapters\\LocalAdapter', '{ \"directory\":\"/files\" }', 0, 1, 1, NULL); -- Modulo adattatori di archiviazione INSERT INTO `zz_modules` (`id`, `directory`, `options`, `options2`, `icon`, `version`, `compatibility`, `order`, `parent`, `default`, `enabled`, `use_notes`, `use_checklists`) VALUES (NULL, 'adattatori_archiviazione', 'SELECT |select| FROM zz_storage_adapters WHERE 1=1 HAVING 2=2', '', 'fa fa-angle-right', '2.5', '2.5', '100', '36', '1', '1', '0', '0');