Standardize category tables

This commit is contained in:
ldestailleur 2025-02-17 13:58:47 +01:00
parent d800b721fd
commit 9af5292cc3

View File

@ -71,7 +71,8 @@ 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);
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);