Ajout de la table llx_societe_perms
This commit is contained in:
parent
e2530cd263
commit
44dc622723
@ -1788,4 +1788,15 @@ ALTER TABLE llx_contrat_contact
|
||||
ALTER TABLE llx_contrat_contact
|
||||
ADD CONSTRAINT idx_contrat_contact_fk_contrat
|
||||
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