[ Index ]
 

Code source de eGroupWare 1.2.106-2

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

title

Body

[fermer]

/sitemgr/modules/sitemgr_module_guestbook/setup/ -> tables_current.inc.php (source)

   1  <?php
   2      /**************************************************************************\
   3      * eGroupWare                                                               *
   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_current.inc.php 16336 2004-08-09 17:46:09Z reinerj $ */
  13  
  14      $phpgw_baseline = array(
  15          'phpgw_sitemgr_module_guestbook_books' => array(
  16              'fd' => array(
  17                  'book_id' => array('type' => 'auto', 'nullable' => false),
  18                  'book_title' => array('type' => 'varchar', 'precision' => 255,'nullable' => false),
  19              ),
  20              'pk' => array('book_id'),
  21              'fk' => array(),
  22              'ix' => array(),
  23              'uc' => array()
  24          ),
  25          'phpgw_sitemgr_module_guestbook_entries' => array(
  26              'fd' => array(
  27                  'entry_id' => array('type' => 'auto', 'nullable' => false),
  28                  'book_id' => array('type' => 'int', 'precision' => 4, 'nullable' => false),
  29                  'name' => array('type' => 'varchar', 'precision' => 100,'nullable' => false),
  30                  'comment' => array('type' => 'text', 'nullable' => True),
  31                  'timestamp' => array('type' => 'int', 'precision' => 8,'nullable' => True)
  32              ),
  33              'pk' => array('entry_id'),
  34              'fk' => array(),
  35              'ix' => array(),
  36              'uc' => array()
  37          ),
  38      );


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