Ajout de la création de la nouvelle table llx_co_fa dans le script de migration.
This commit is contained in:
parent
45f2208927
commit
a3c965a305
@ -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_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)
|
||||||
|
);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user