phpgroupware-developers
[Top][All Lists]
Advanced

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

[Phpgroupware-developers] type of phpgw_applications.app_tables


From: Bradley Bell
Subject: [Phpgroupware-developers] type of phpgw_applications.app_tables
Date: Thu, 20 Dec 2001 15:51:32 -0800
User-agent: Mutt/1.2.5i

phpgwapi_upgrade0_9_13_012() adjusts phpgw_applications.app_tables to be of
type text, but for a fresh install, it was still varchar(255).   This fixes
that.

-brad

-- 
Bradley Bell
Computer Support Analyst
University of Washington
Classroom Support Services


Index: setup/tables_current.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/setup/tables_current.inc.php,v
retrieving revision 1.32
diff -u -r1.32 tables_current.inc.php
--- setup/tables_current.inc.php        2001/11/25 23:32:16     1.32
+++ setup/tables_current.inc.php        2001/12/20 23:48:44
@@ -30,7 +30,7 @@
                                'app_title' => array('type' => 'varchar', 
'precision' => 50),
                                'app_enabled' => array('type' => 'int', 
'precision' => 4),
                                'app_order' => array('type' => 'int', 
'precision' => 4),
-                               'app_tables' => array('type' => 'varchar', 
'precision' => 255),
+                               'app_tables' => array('type' => 'text'),
                                'app_version' => array('type' => 'varchar', 
'precision' => 20, 'nullable' => false, 'default' => '0.0')
                        ),
                        'pk' => array('app_id'),



reply via email to

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