From 8e411b3ead63092a32805de28ce5741fea1a83d4 Mon Sep 17 00:00:00 2001 From: ldestailleur Date: Mon, 17 Feb 2025 13:59:59 +0100 Subject: [PATCH] Standardize category tables --- htdocs/install/mysql/migration/21.0.0-22.0.0.sql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/htdocs/install/mysql/migration/21.0.0-22.0.0.sql b/htdocs/install/mysql/migration/21.0.0-22.0.0.sql index 51cdda10be8..4b6e2c10de7 100644 --- a/htdocs/install/mysql/migration/21.0.0-22.0.0.sql +++ b/htdocs/install/mysql/migration/21.0.0-22.0.0.sql @@ -71,8 +71,7 @@ create table llx_categorie_order import_key varchar(14) )ENGINE=innodb; -ALTER TABLE llx_categorie_order ADD PRIMARY KEY pk_categorie_order (fk_categorie, fk_order); -- noqa: PRS - +ALTER TABLE llx_categorie_order ADD PRIMARY KEY pk_categorie_order (fk_categorie, fk_order); -- noqa: PRS ALTER TABLE llx_categorie_order ADD INDEX idx_categorie_order_fk_categorie (fk_categorie); ALTER TABLE llx_categorie_order ADD INDEX idx_categorie_order_fk_order (fk_order);