[ Index ]
 

Code source de eGroupWare 1.2.106-2

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/sitemgr/setup/ -> tables_baseline.inc.php (source)

   1  <?php
   2      /**************************************************************************\
   3      * eGroupWare SiteMgr - Web Content Management                              *
   4      * http://www.egroupware.org                                                *
   5      * --------------------------------------------                             *
   6      *  This program is free software; you can redistribute it and/or modify it *
   7      *  under the terms of the GNU General Public License as published by the   *
   8      *  Free Software Foundation; either version 2 of the License, or (at your  *
   9      *  option) any later version.                                              *
  10      \**************************************************************************/
  11  
  12      /* $Id: tables_baseline.inc.php 13729 2004-02-10 14:56:34Z ralfbecker $ */
  13  
  14      $phpgw_baseline = array(
  15          'phpgw_sitemgr_pages' => array(
  16              'fd' => array(
  17                  'page_id' => array('type' => 'auto', 'nullable' => false),
  18                  'cat_id' => array('type' => 'int', 'precision' => 4),
  19                  'name' => array('type' => 'varchar', 'precision' => 100),
  20                  'title' => array('type' => 'varchar', 'precision' => 256),
  21                  'subtitle' => array('type' => 'varchar', 'precision' => 256),
  22                  'content' => array('type' => 'text')
  23              ),
  24              'pk' => array('page_id'),
  25              'fk' => array(),
  26              'ix' => array('cat_id'),
  27              'uc' => array()
  28          ),
  29          'phpgw_sitemgr_categories' => array(
  30              'fd' => array(
  31                  'cat_id' => array('type' => 'auto', 'nullable' => false),
  32                  'name' => array('type' => 'varchar', 'precision' => 100),
  33                  'description' => array('type' => 'varchar', 'precision' => 256)
  34              ),
  35              'pk' => array('cat_id'),
  36              'fk' => array(),
  37              'ix' => array(),
  38              'uc' => array()
  39          ),
  40          'phpgw_sitemgr_blocks' => array(
  41              'fd' => array(
  42                  'block_id' => array('type' => 'auto', 'nullable' => false),
  43                  'side' => array('type' => 'int', 'precision' => 4),
  44                  'position' => array('type' => 'int', 'precision' => 4),
  45                  'filename' => array('type' => 'varchar', 'precision' => 300),
  46                  'title' => array('type' => 'varchar', 'precision' => 256)
  47              ),
  48              'pk' => array('block_id'),
  49              'fk' => array(),
  50              'ix' => array(),
  51              'uc' => array()
  52          ),
  53          'phpgw_sitemgr_preferences' => array(
  54              'fd' => array(
  55                  'pref_id' => array('type' => 'auto', 'nullable' => false),
  56                  'name' => array('type' => 'varchar', 'precision' => 256),
  57                  'value' => array('type' => 'text')
  58              ),
  59              'pk' => array('pref_id'),
  60              'fk' => array(),
  61              'ix' => array(),
  62              'uc' => array()
  63          )
  64      );
  65  ?>


Généré le : Sun Feb 25 17:20:01 2007 par Balluche grâce à PHPXref 0.7