2
0
forked from Wavyzz/dolibarr

Add price_level in fields

This commit is contained in:
Laurent Destailleur
2009-02-16 19:43:24 +00:00
parent 7b8a173f25
commit c287ed9f98
2 changed files with 5 additions and 1 deletions

View File

@@ -69,6 +69,9 @@ alter table llx_commande_fournisseur_log add column comment varchar(255) NULL;
delete from llx_categorie_association where fk_categorie_mere = fk_categorie_fille;
alter table llx_societe add price_level tinyint(4) NULL;
-- V4.1 delete from llx_projet_task where fk_projet not in (select rowid from llx_projet);
-- V4.1 ALTER TABLE llx_projet_task ADD CONSTRAINT fk_projet_task_fk_projet FOREIGN KEY (fk_projet) REFERENCES llx_projet (rowid);

View File

@@ -68,5 +68,6 @@ create table llx_societe
mode_reglement tinyint, -- mode de r<>glement
cond_reglement tinyint, -- condition de r<>glement
tva_assuj tinyint DEFAULT 1, -- assujeti ou non <20> la TVA
gencod varchar(255) --
gencod varchar(255), -- barcode
price_level tinyint(4) NULL -- level of price for multiprices
)type=innodb;