[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Phpgroupware-cvs] CVS: wcm/setup tables_baseline.inc.php,1.3,1.4
From: |
Bettina Gille <address@hidden> |
Subject: |
[Phpgroupware-cvs] CVS: wcm/setup tables_baseline.inc.php,1.3,1.4 |
Date: |
Sat, 07 Sep 2002 17:54:57 -0400 |
Update of /cvsroot/phpgroupware/wcm/setup
In directory subversions:/tmp/cvs-serv17582
Modified Files:
tables_baseline.inc.php
Log Message:
trying to rollback the wcm changes
Index: tables_baseline.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/wcm/setup/tables_baseline.inc.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** tables_baseline.inc.php 27 Aug 2002 08:34:48 -0000 1.3
--- tables_baseline.inc.php 7 Sep 2002 21:54:55 -0000 1.4
***************
*** 1,64 ****
<?php
!
/**************************************************************************\
! * phpGroupWare
*
! * http://www.phpgroupware.org
*
! * --------------------------------------------
*
! * 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$ */
$phpgw_baseline = array(
! 'phpgw_wcm_pages' => array(
! 'fd' => array(
! 'page_id' => array('type' => 'auto', 'nullable'
=> false),
! 'cat_id' => array('type' => 'int', 'precision'
=> 4),
! 'name' => array('type' => 'varchar',
'precision' => 100),
! 'title' => array('type' => 'varchar',
'precision' => 256),
! 'subtitle' => array('type' => 'varchar',
'precision' => 256),
! 'content' => array('type' => 'text')
! ),
! 'pk' => array('page_id'),
! 'fk' => array(),
! 'ix' => array('cat_id'),
! 'uc' => array()
! ),
! 'phpgw_wcm_categories' => array(
'fd' => array(
! 'cat_id' => array('type' => 'auto', 'nullable'
=> false),
! 'name' => array('type' => 'varchar',
'precision' => 100),
! 'description' => array('type' => 'varchar',
'precision' => 256)
),
! 'pk' => array('cat_id'),
'fk' => array(),
'ix' => array(),
! 'uc' => array()
),
! 'phpgw_wcm_blocks' => array(
'fd' => array(
! 'block_id' => array('type' => 'auto',
'nullable' => false),
! 'side' => array('type' => 'int', 'precision' =>
4),
! 'position' => array('type' => 'int',
'precision' => 4),
! 'filename' => array('type' => 'varchar',
'precision' => 300),
! 'title' => array('type' => 'varchar',
'precision' => 256)
),
! 'pk' => array('block_id'),
'fk' => array(),
'ix' => array(),
! 'uc' => array()
),
! 'phpgw_wcm_preferences' => array(
'fd' => array(
! 'pref_id' => array('type' => 'auto', 'nullable'
=> false),
! 'name' => array('type' => 'varchar',
'precision' => 256),
! 'value' => array('type' => 'text')
),
! 'pk' => array('pref_id'),
'fk' => array(),
'ix' => array(),
! 'uc' => array()
)
);
--- 1,72 ----
<?php
! /**************************************************************************\
! * phpGroupWare *
! * http://www.phpgroupware.org *
! * -------------------------------------------- *
! * 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$ */
$phpgw_baseline = array(
! 'phpgw_wcm_sites' => array(
'fd' => array(
! 'site_id' => array('type' => 'auto',
'nullable' => False),
! 'site_name' => array('type' => 'varchar',
'precision' => 64, 'nullable' => True),
! 'site_title' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'site_url' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'site_root' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'username' => array('type' => 'varchar',
'precision' => 64, 'nullable' => True),
! 'password' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'admin_name' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'admin_email' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'site_security' => array('type' => 'varchar',
'precision' => 16,'nullable' => True),
! 'site_pages' => array('type' => 'text'),
! 'site_header' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'site_footer' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'site_langs' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'site_version' => array('type' => 'varchar',
'precision' => 64, 'nullable' => True)
),
! 'pk' => array('site_id'),
'fk' => array(),
'ix' => array(),
! 'uc' => array('site_name')
),
! 'phpgw_wcm_pages' => array(
'fd' => array(
! 'page_id' => array('type' => 'auto',
'nullable' => False),
! 'page_name' => array('type' => 'varchar',
'precision' => 64, 'nullable' => True),
! 'page_title' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'page_url' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'page_elements' => array('type' => 'text'),
! 'page_header' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'page_footer' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'page_expire' => array('type' => 'varchar',
'precision' => 64, 'nullable' => True),
! 'page_langs' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'page_version' => array('type' => 'varchar',
'precision' => 64, 'nullable' => True)
),
! 'pk' => array('page_id'),
'fk' => array(),
'ix' => array(),
! 'uc' => array('page_name')
),
! 'phpgw_wcm_elements' => array(
'fd' => array(
! 'element_id' => array('type' => 'auto',
'nullable' => False),
! 'element_name' => array('type' => 'varchar',
'precision' => 64, 'nullable' => True),
! 'element_title' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'element_type' => array('type' => 'varchar',
'precision' => 64, 'nullable' => True),
! 'element_source' => array('type' => 'text'),
! 'element_expire' => array('type' => 'varchar',
'precision' => 64, 'nullable' => True),
! 'element_langs' => array('type' => 'varchar',
'precision' => 255, 'nullable' => True),
! 'element_version' => array('type' => 'varchar',
'precision' => 64, 'nullable' => True)
),
! 'pk' => array('element_id'),
'fk' => array(),
'ix' => array(),
! 'uc' => array('element_name')
)
);
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Phpgroupware-cvs] CVS: wcm/setup tables_baseline.inc.php,1.3,1.4,
Bettina Gille <address@hidden> <=
- Prev by Date:
[Phpgroupware-cvs] CVS: property building_value_history.php,1.1,1.2 list_building_value.php,1.1,1.2
- Next by Date:
[Phpgroupware-cvs] CVS: wcm/setup tables_current.inc.php,1.10,1.11
- Previous by thread:
[Phpgroupware-cvs] CVS: property building_value_history.php,1.1,1.2 list_building_value.php,1.1,1.2
- Next by thread:
[Phpgroupware-cvs] CVS: wcm/setup tables_current.inc.php,1.10,1.11
- Index(es):