Skip to content

Commit

Permalink
Fix: Bad sql requests
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Aug 1, 2013
1 parent 2fa1032 commit af02669
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions htdocs/install/mysql/migration/3.4.0-3.5.0.sql
Expand Up @@ -284,6 +284,6 @@ ALTER TABLE llx_bordereau_cheque ADD tms timestamp;


-- Task 1011
ALTER TABLE `llx_societe` ADD `mode_reglement_supplier` TINYINT NOT NULL AFTER `cond_reglement` ,
ADD `cond_reglement_supplier` TINYINT NOT NULL AFTER `mode_reglement_supplier`;
ALTER TABLE `llx_facture_fourn` ADD `fk_mode_reglement` TINYINT NOT NULL AFTER `fk_cond_reglement`;
ALTER TABLE llx_societe ADD mode_reglement_supplier integer NULL AFTER cond_reglement;
ALTER TABLE llx_societe ADD cond_reglement_supplier integer NULL AFTER mode_reglement_supplier;
ALTER TABLE llx_facture_fourn ADD fk_mode_reglement integer NULL AFTER fk_cond_reglement;

0 comments on commit af02669

Please sign in to comment.