Ajout de la table llx_societe_perms
This commit is contained in:
parent
e2530cd263
commit
44dc622723
@ -1789,3 +1789,14 @@ ALTER TABLE llx_contrat_contact
|
|||||||
ADD CONSTRAINT idx_contrat_contact_fk_contrat
|
ADD CONSTRAINT idx_contrat_contact_fk_contrat
|
||||||
FOREIGN KEY (fk_contrat) REFERENCES llx_contrat(rowid);
|
FOREIGN KEY (fk_contrat) REFERENCES llx_contrat(rowid);
|
||||||
|
|
||||||
|
create table llx_societe_perms
|
||||||
|
(
|
||||||
|
fk_soc integer,
|
||||||
|
fk_user integer,
|
||||||
|
pread tinyint unsigned DEFAULT 0,
|
||||||
|
pwrite tinyint unsigned DEFAULT 0,
|
||||||
|
pperms tinyint unsigned DEFAULT 0,
|
||||||
|
|
||||||
|
UNIQUE INDEX(fk_soc, fk_user)
|
||||||
|
)type=innodb;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user