Fix query inserimento adattatore file locali
This commit is contained in:
parent
68fac4c12a
commit
15d55d140b
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue