Skip to content

Commit

Permalink
Fix missing tables
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Feb 26, 2015
1 parent daabc11 commit 22318bb
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions htdocs/install/mysql/migration/3.7.0-3.8.0.sql
Expand Up @@ -197,3 +197,15 @@ CREATE TABLE llx_expensereport_det
ALTER TABLE llx_projet ADD COLUMN budget_amount double(24,8);



create table llx_commande_fournisseurdet_extrafields
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
tms timestamp,
fk_object integer NOT NULL,
import_key varchar(14)
) ENGINE=innodb;

ALTER TABLE llx_commande_fournisseurdet_extrafields ADD INDEX idx_commande_fournisseurdet_extrafields (fk_object);


0 comments on commit 22318bb

Please sign in to comment.