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

📄 mysql.sql

📁 在综合英文版XOOPS 2.09, 2.091, 2.092 的基础上正式发布XOOPS 2.09中文版 XOOPS 2.09x 版主要是PHP5升级、bug修正和安全补正: 1 全面兼容PHP 5.
💻 SQL
字号:
#
# Table structure for table `xoopsfaq_categories`
#

CREATE TABLE xoopsfaq_categories (
  category_id tinyint(3) unsigned NOT NULL auto_increment,
  category_title varchar(255) NOT NULL default '',
  category_order tinyint(3) unsigned NOT NULL default '0',
  PRIMARY KEY  (category_id)
) TYPE=MyISAM;
# --------------------------------------------------------

#
# Table structure for table `xoopsfaq_contents`
#

CREATE TABLE xoopsfaq_contents (
  contents_id smallint(5) unsigned NOT NULL auto_increment,
  category_id tinyint(3) unsigned NOT NULL default '0',
  contents_title varchar(255) NOT NULL default '',
  contents_contents text NOT NULL,
  contents_time int(10) unsigned NOT NULL default '0',
  contents_order smallint(5) unsigned NOT NULL default '0',
  contents_visible tinyint(1) unsigned NOT NULL default '1',
  contents_nohtml tinyint(1) unsigned NOT NULL default '0',
  contents_nosmiley tinyint(1) unsigned NOT NULL default '0',
  contents_noxcode tinyint(1) unsigned NOT NULL default '0',
  PRIMARY KEY  (contents_id),
  KEY contents_title (contents_title(40)),
  KEY contents_visible_category_id (contents_visible,category_id)
) TYPE=MyISAM;

⌨️ 快捷键说明

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