Ajout table llx_contact_facture
This commit is contained in:
parent
88e982b2f8
commit
62e7758480
@ -679,11 +679,31 @@ create table llx_societe_remise
|
|||||||
|
|
||||||
)type=innodb;
|
)type=innodb;
|
||||||
|
|
||||||
|
|
||||||
|
--
|
||||||
|
--
|
||||||
|
create table llx_contact_facture
|
||||||
|
(
|
||||||
|
idp integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
|
fk_soc integer NOT NULL,
|
||||||
|
fk_contact integer NOT NULL, -- point sur llx_socpeople
|
||||||
|
|
||||||
|
UNIQUE (fk_soc, fk_contact)
|
||||||
|
)type=innodb;
|
||||||
|
|
||||||
|
|
||||||
|
--
|
||||||
|
--
|
||||||
|
--
|
||||||
|
--
|
||||||
|
|
||||||
create table llx_so_gr
|
create table llx_so_gr
|
||||||
(
|
(
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
fk_soc integer,
|
fk_soc integer,
|
||||||
fk_groupe integer
|
fk_groupe integer,
|
||||||
|
|
||||||
|
UNIQUE(fk_soc, fk_groupe)
|
||||||
)type=innodb;
|
)type=innodb;
|
||||||
|
|
||||||
create table llx_groupesociete_remise
|
create table llx_groupesociete_remise
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user