From 042deff0c037cb623933ae9fd75e3f8b65cc8e1a Mon Sep 17 00:00:00 2001 From: valentina Date: Fri, 20 Dec 2024 09:42:50 +0100 Subject: [PATCH] fix: creazione tabella marchi con moduli aggiuntivi --- update/2_6.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update/2_6.sql b/update/2_6.sql index 48dba55af..c31772dc2 100644 --- a/update/2_6.sql +++ b/update/2_6.sql @@ -1,7 +1,7 @@ -- Aggiunta Marchio articolo ALTER TABLE `mg_articoli` ADD `id_marchio` INT NULL DEFAULT NULL; -CREATE TABLE `mg_marchi` ( +CREATE TABLE IF NOT EXISTS `mg_marchi` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `link` varchar(255) NOT NULL,