Skip to content
Snippets Groups Projects
Commit 28148f86 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fixed: Bad sql requests

parent e220ce5a
No related branches found
No related tags found
No related merge requests found
...@@ -47,11 +47,11 @@ ALTER TABLE llx_product_fournisseur_price ADD fk_price_expression integer DEFAUL ...@@ -47,11 +47,11 @@ ALTER TABLE llx_product_fournisseur_price ADD fk_price_expression integer DEFAUL
insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,note,active) values ( 2131, 213, '5', '0', 'VAT 5%', 1); insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,note,active) values ( 2131, 213, '5', '0', 'VAT 5%', 1);
-- Add situation invoices -- Add situation invoices
ALTER TABLE llx_facture ADD situation_cycle_ref integer; ALTER TABLE llx_facture ADD COLUMN situation_cycle_ref integer;
ALTER TABLE llx_facture ADD situation_counter integer; ALTER TABLE llx_facture ADD COLUMN situation_counter integer;
ALTER TABLE llx_facture ADD situation_final integer; ALTER TABLE llx_facture ADD COLUMN situation_final integer;
ALTER TABLE llx_facturedet ADD situation_percent real; ALTER TABLE llx_facturedet ADD COLUMN situation_percent real;
ALTER TABLE llx_facturedet ADD fk_prev_id integer; ALTER TABLE llx_facturedet ADD COLUMN fk_prev_id integer;
-- Convert SMTP config to main entity, so new entities don't get the old values -- Convert SMTP config to main entity, so new entities don't get the old values
UPDATE llx_const SET entity = 1 WHERE entity = 0 AND name = "MAIN_MAIL_SENDMODE"; UPDATE llx_const SET entity = 1 WHERE entity = 0 AND name = "MAIN_MAIL_SENDMODE";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment