Adjust phpgw_applications.app_tables to 'text' type

This commit is contained in:
Miles Lott 2001-09-29 23:08:33 +00:00
parent 97993ce7e9
commit 10586849e5
2 changed files with 12 additions and 1 deletions

View File

@ -14,7 +14,7 @@
/* Basic information about this app */
$setup_info['phpgwapi']['name'] = 'phpgwapi';
$setup_info['phpgwapi']['title'] = 'phpgwapi';
$setup_info['phpgwapi']['version'] = '0.9.13.012';
$setup_info['phpgwapi']['version'] = '0.9.13.013';
$setup_info['phpgwapi']['versions']['current_header'] = '1.18';
$setup_info['phpgwapi']['enable'] = 3;
$setup_info['phpgwapi']['app_order'] = 1;

View File

@ -2123,4 +2123,15 @@
$setup_info['phpgwapi']['currentver'] = '0.9.13.012';
return $setup_info['phpgwapi']['currentver'];
}
$test[] = '0.9.13.012';
function phpgwapi_upgrade0_9_13_012()
{
global $setup_info, $phpgw_setup;
$phpgw_setup->oProc->AlterColumn('phpgw_applications', 'app_tables', array('type' => 'text'));
$setup_info['phpgwapi']['currentver'] = '0.9.13.013';
return $setup_info['phpgwapi']['currentver'];
}
?>