phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] phpgwapi/setup tables_current.inc.php


From: Sigurd Nes
Subject: [Phpgroupware-cvs] phpgwapi/setup tables_current.inc.php
Date: Mon, 13 Mar 2006 13:48:17 +0000

CVSROOT:        /sources/phpgwapi
Module name:    phpgwapi
Branch:         
Changes by:     Sigurd Nes <address@hidden>     06/03/13 13:48:17

Modified files:
        setup          : tables_current.inc.php 

Log message:
        Introducing ACL2

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/phpgwapi/phpgwapi/setup/tables_current.inc.php.diff?tr1=1.55&tr2=1.56&r1=text&r2=text

Patches:
Index: phpgwapi/setup/tables_current.inc.php
diff -u phpgwapi/setup/tables_current.inc.php:1.55 
phpgwapi/setup/tables_current.inc.php:1.56
--- phpgwapi/setup/tables_current.inc.php:1.55  Mon Mar  6 14:21:10 2006
+++ phpgwapi/setup/tables_current.inc.php       Mon Mar 13 13:48:16 2006
@@ -5,7 +5,7 @@
        * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
        * @package phpgwapi
        * @subpackage setup
-       * @version $Id: tables_current.inc.php,v 1.55 2006/03/06 14:21:10 
skwashd Exp $
+       * @version $Id: tables_current.inc.php,v 1.56 2006/03/13 13:48:16 
sigurdne Exp $
        * @internal $Source: 
/sources/phpgwapi/phpgwapi/setup/tables_current.inc.php,v $
        */
 
@@ -40,13 +40,27 @@
                                'acl_appname' => array('type' => 
'varchar','precision' => '50'),
                                'acl_location' => array('type' => 
'varchar','precision' => '255'),
                                'acl_account' => array('type' => 
'int','precision' => '4'),
-                               'acl_rights' => array('type' => 
'int','precision' => '4')
+                               'acl_rights' => array('type' => 
'int','precision' => '4'),
+                               'acl_grantor' => array('type' => 
'int','precision' => '4','nullable' => True),
+                               'acl_type' => array('type' => 'int','precision' 
=> '2','nullable' => True)
                        ),
                        'pk' => array(),
                        'ix' => array('acl_location','acl_account'),
                        'fk' => array(),
                        'uc' => array()
                ),
+               'phpgw_acl_location' => array(
+                       'fd' => array(
+                               'appname' => array('type' => 
'varchar','precision' => '25','nullable' => False),
+                               'id' => array('type' => 'varchar','precision' 
=> '50','nullable' => False),
+                               'descr' => array('type' => 
'varchar','precision' => '50','nullable' => False),
+                               'allow_grant' => array('type' => 
'int','precision' => '4','nullable' => True)
+                       ),
+                       'pk' => array('appname','id'),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+               ),
                'phpgw_accounts' => array(
                        'fd' => array(
                                'account_id' => array('type' => 
'auto','nullable' => False),




reply via email to

[Prev in Thread] Current Thread [Next in Thread]