⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tables_current.inc.php

📁 eGroupWare is a multi-user, web-based groupware suite developed on a custom set of PHP-based APIs. C
💻 PHP
字号:
<?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: tables_current.inc.php,v 1.1 2003/06/15 06:36:58 totschnig Exp $ */	$phpgw_baseline = array(		'phpgw_sitemgr_module_guestbook_books' => array(			'fd' => array(				'book_id' => array('type' => 'auto', 'nullable' => false),				'book_title' => array('type' => 'varchar', 'precision' => 255,'nullable' => false),			),			'pk' => array('book_id'),			'fk' => array(),			'ix' => array(),			'uc' => array()		),		'phpgw_sitemgr_module_guestbook_entries' => array(			'fd' => array(				'entry_id' => array('type' => 'auto', 'nullable' => false),				'book_id' => array('type' => 'int', 'precision' => 4, 'nullable' => false),				'name' => array('type' => 'varchar', 'precision' => 100,'nullable' => false),				'comment' => array('type' => 'text', 'nullable' => True),				'timestamp' => array('type' => 'int', 'precision' => 8,'nullable' => True)			),			'pk' => array('entry_id'),			'fk' => array(),			'ix' => array(),			'uc' => array()		),	);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -