Ajout de la cration de la nouvelle table llx_co_fa dans le script de migration.

This commit is contained in:
Laurent Destailleur 2004-01-25 01:21:44 +00:00
parent 45f2208927
commit a3c965a305

View File

@ -8,4 +8,16 @@ alter table llx_product add stock_commande integer default 0;
alter table llx_product add seuil_stock_alerte integer default 0;
ALTER TABLE `llx_groupart` ADD `description` TEXT AFTER `groupart` ;
ALTER TABLE `llx_groupart` ADD `description` TEXT AFTER `groupart` ;
-- Nouvelle table
create table llx_co_fa
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
fk_commande integer NOT NULL,
fk_facture integer NOT NULL,
key(fk_commande),
key(fk_facture)
);