Standardize category tables

This commit is contained in:
ldestailleur 2025-02-17 13:59:59 +01:00
parent 9af5292cc3
commit 8e411b3ead

View File

@ -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);