Update setup.inc.php and tables_current possible field change

do not touch these files
This commit is contained in:
Miles Lott 2001-05-31 21:44:52 +00:00
parent 2ebeebfcb3
commit 073de05325
2 changed files with 31 additions and 9 deletions

View File

@ -1,9 +1,31 @@
<?php
$setup_info['infolog']['name'] = 'Info Log';
/**************************************************************************\
* phpGroupWare - Bookmarks *
* http://www.phpgroupware.org *
* Based on Bookmarker Copyright (C) 1998 Padraic Renaghan *
* http://www.renaghan.com/bookmarker *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$setup_info['infolog']['name'] = 'infolog';
$setup_info['infolog']['title'] = 'Info Log';
$setup_info['infolog']['version'] = '0.9.11';
$setup_info['infolog']['app_order'] = 1;
$setup_info['infolog']['tables'] = 'phpgw_infolog';
$hooks = Array();
$hooks_string = implode (',', $hooks);
$setup_info['infolog']['hooks'] = $hooks_string;
$setup_info['infolog']['app_order'] = 20;
$setup_info['infolog']['tables'] = array('phpgw_infolog');
/* The hooks this app includes, needed for hooks registration */
$setup_info['infolog']['hooks'][] = 'preferences';
$setup_info['infolog']['hooks'][] = 'admin';
/* Dependacies for this app to work */
$setup_info['infolog']['depends'][] = array(
'appname' => 'phpgwapi',
'versions' => Array('0.9.10', '0.9.11' , '0.9.12', '0.9.13')
);
?>

View File

@ -12,10 +12,10 @@
/* $Id$ */
$phpgw_baseline = array(
'infolog' => array(
'phpgw_infolog' => array(
'fd' => array(
'info_id' => array('type' => 'auto', 'nullable' => false),
'info_type' => array('type' => 'enum',
'info_type' => array('type' => 'varchar', 'precision' => 25),
'info_id_parent' => array('type' => 'int', 'precision' => 4, 'nullable' => false),
'info_owner' => array('type' => 'varchar', 'precision' => 25),
'info_access' => array('type' => 'varchar', 'precision' => 10),
@ -31,6 +31,6 @@
'fk' => array(),
'ix' => array(),
'uc' => array()
),
)
);
?>