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

Work to add information required by internationnal businesses.

parent 7a2d72b6
No related branches found
No related tags found
No related merge requests found
......@@ -69,3 +69,7 @@ DELETE FROM llx_c_tva WHERE rowid = 46;
ALTER TABLE llx_adherent ADD COLUMN import_key varchar(14);
ALTER TABLE llx_categorie ADD COLUMN import_key varchar(14);
ALTER TABLE llx_product ADD COLUMN customcode varchar(32) after note;
ALTER TABLE llx_product ADD COLUMN fk_country integer after customcode;
......@@ -33,6 +33,8 @@ create table llx_product
label varchar(255) NOT NULL,
description text,
note text,
customcode varchar(32), -- Optionnal custom code
fk_country integer, -- Optionnal id of original country
price double(24,8) DEFAULT 0,
price_ttc double(24,8) DEFAULT 0,
price_min double(24,8) DEFAULT 0,
......
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