From 03cbaf4413e7dd93c289def0d94bb967d7e30fac Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Tue, 30 Aug 2005 14:22:06 +0000 Subject: [PATCH] Ajout pperms --- mysql/tables/llx_societe_perms.sql | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mysql/tables/llx_societe_perms.sql b/mysql/tables/llx_societe_perms.sql index 519fd1c0e12..b6abc9ec6b6 100644 --- a/mysql/tables/llx_societe_perms.sql +++ b/mysql/tables/llx_societe_perms.sql @@ -24,8 +24,9 @@ create table llx_societe_perms ( fk_soc integer, fk_user integer, - pread tinyint unsigned DEFAULT 0, - pwrite tinyint unsigned DEFAULT 0, + pread tinyint unsigned DEFAULT 0, -- permission de lecture + pwrite tinyint unsigned DEFAULT 0, -- permission d'ecriture + pperms tinyint unsigned DEFAULT 0, -- permission sur les permissions UNIQUE INDEX(fk_soc, fk_user) )type=innodb;