Ajout
create table llx_fournisseur_ca ( fk_societe integer, date_calcul datetime, year smallint UNSIGNED, ca_genere float, UNIQUE (fk_societe, year) )type=innodb; create table llx_product_ca ( fk_product integer, date_calcul datetime, year smallint UNSIGNED, ca_genere float, UNIQUE (fk_product, year) )type=innodb;
This commit is contained in:
parent
70d8e6fe58
commit
57bfd36257
@ -520,3 +520,21 @@ create table llx_fournisseur_categorie
|
|||||||
label varchar(255)
|
label varchar(255)
|
||||||
|
|
||||||
)type=innodb;
|
)type=innodb;
|
||||||
|
|
||||||
|
create table llx_fournisseur_ca
|
||||||
|
(
|
||||||
|
fk_societe integer,
|
||||||
|
date_calcul datetime,
|
||||||
|
year smallint UNSIGNED,
|
||||||
|
ca_genere float,
|
||||||
|
UNIQUE (fk_societe, year)
|
||||||
|
)type=innodb;
|
||||||
|
|
||||||
|
create table llx_product_ca
|
||||||
|
(
|
||||||
|
fk_product integer,
|
||||||
|
date_calcul datetime,
|
||||||
|
year smallint UNSIGNED,
|
||||||
|
ca_genere float,
|
||||||
|
UNIQUE (fk_product, year)
|
||||||
|
)type=innodb;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user