Standardize category tables

This commit is contained in:
ldestailleur 2025-02-17 14:01:16 +01:00
parent 8e411b3ead
commit fc96a88bd9

View File

@ -71,7 +71,9 @@ 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
--noqa:disable=PRS
ALTER TABLE llx_categorie_order ADD PRIMARY KEY pk_categorie_order (fk_categorie, fk_order);
--noqa:enable=all
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);