mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 12:39:25 +01:00
Update setup.inc.php and tables_current possible field change
do not touch these files
This commit is contained in:
parent
2ebeebfcb3
commit
073de05325
@ -1,9 +1,31 @@
|
|||||||
<?php
|
<?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']['version'] = '0.9.11';
|
||||||
$setup_info['infolog']['app_order'] = 1;
|
$setup_info['infolog']['app_order'] = 20;
|
||||||
$setup_info['infolog']['tables'] = 'phpgw_infolog';
|
$setup_info['infolog']['tables'] = array('phpgw_infolog');
|
||||||
$hooks = Array();
|
|
||||||
$hooks_string = implode (',', $hooks);
|
/* The hooks this app includes, needed for hooks registration */
|
||||||
$setup_info['infolog']['hooks'] = $hooks_string;
|
$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')
|
||||||
|
);
|
||||||
?>
|
?>
|
||||||
|
@ -12,10 +12,10 @@
|
|||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
$phpgw_baseline = array(
|
$phpgw_baseline = array(
|
||||||
'infolog' => array(
|
'phpgw_infolog' => array(
|
||||||
'fd' => array(
|
'fd' => array(
|
||||||
'info_id' => array('type' => 'auto', 'nullable' => false),
|
'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_id_parent' => array('type' => 'int', 'precision' => 4, 'nullable' => false),
|
||||||
'info_owner' => array('type' => 'varchar', 'precision' => 25),
|
'info_owner' => array('type' => 'varchar', 'precision' => 25),
|
||||||
'info_access' => array('type' => 'varchar', 'precision' => 10),
|
'info_access' => array('type' => 'varchar', 'precision' => 10),
|
||||||
@ -31,6 +31,6 @@
|
|||||||
'fk' => array(),
|
'fk' => array(),
|
||||||
'ix' => array(),
|
'ix' => array(),
|
||||||
'uc' => array()
|
'uc' => array()
|
||||||
),
|
)
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user