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

📄 joomla_backward.sql

📁 国外免费开源的内容管理系统
💻 SQL
📖 第 1 页 / 共 3 页
字号:
  `poll_id` int(11) NOT NULL default '0',  PRIMARY KEY  (`id`),  KEY `poll_id` (`poll_id`)) TYPE=MyISAM;# --------------------------------------------------------## Table structure for table `#__polls`#CREATE TABLE `#__polls` (  `id` int(11) unsigned NOT NULL auto_increment,  `title` TEXT NOT NULL default '',  `alias` varchar(255) NOT NULL default '',  `voters` int(9) NOT NULL default '0',  `checked_out` int(11) NOT NULL default '0',  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',  `published` tinyint(1) NOT NULL default '0',  `access` int(11) NOT NULL default '0',  `lag` int(11) NOT NULL default '0',  PRIMARY KEY  (`id`)) TYPE=MyISAM;# --------------------------------------------------------## Table structure for table `#__poll_menu`# !!!DEPRECATED!!!#CREATE TABLE `#__poll_menu` (  `pollid` int(11) NOT NULL default '0',  `menuid` int(11) NOT NULL default '0',  PRIMARY KEY  (`pollid`,`menuid`)) TYPE=MyISAM;# --------------------------------------------------------## Table structure for table `#__sections`#CREATE TABLE `#__sections` (  `id` int(11) NOT NULL auto_increment,  `title` TEXT NOT NULL default '',  `name` TEXT NOT NULL default '',  `alias` varchar(255) NOT NULL default '',  `image` TEXT NOT NULL default '',  `scope` varchar(50) NOT NULL default '',  `image_position` varchar(90) NOT NULL default '',  `description` text NOT NULL,  `published` tinyint(1) NOT NULL default '0',  `checked_out` int(11) unsigned NOT NULL default '0',  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',  `ordering` int(11) NOT NULL default '0',  `access` tinyint(3) unsigned NOT NULL default '0',  `count` int(11) NOT NULL default '0',  `params` text NOT NULL,  PRIMARY KEY  (`id`),  KEY `idx_scope` (`scope`)) TYPE=MyISAM;# --------------------------------------------------------## Table structure for table `#__session`#CREATE TABLE `#__session` (  `username` varchar(150) default '',  `time` varchar(14) default '',  `session_id` varchar(200) NOT NULL default '0',  `guest` tinyint(4) default '1',  `userid` int(11) default '0',  `usertype` varchar(150) default '',  `gid` tinyint(3) unsigned NOT NULL default '0',  `client_id` tinyint(3) unsigned NOT NULL default '0',  `data` longtext,  PRIMARY KEY  (`session_id`(64)),  KEY `whosonline` (`guest`,`usertype`),  KEY `userid` (`userid`),  KEY `time` (`time`)) TYPE=MyISAM;# --------------------------------------------------------## Table structure for table `#__stats_agents`#CREATE TABLE `#__stats_agents` (  `agent` varchar(255) NOT NULL default '',  `type` tinyint(1) unsigned NOT NULL default '0',  `hits` int(11) unsigned NOT NULL default '1') TYPE=MyISAM;# --------------------------------------------------------## Table structure for table `#__templates_menu`#CREATE TABLE `#__templates_menu` (  `template` TEXT NOT NULL default '',  `menuid` int(11) NOT NULL default '0',  `client_id` tinyint(4) NOT NULL default '0',  PRIMARY KEY (`menuid`, `client_id`, `template`(255))) TYPE=MyISAM;# Dumping data for table `#__templates_menu`INSERT INTO `#__templates_menu` VALUES ('rhuk_milkyway', '0', '0');INSERT INTO `#__templates_menu` VALUES ('khepri', '0', '1');# --------------------------------------------------------## Table structure for table `#__users`#CREATE TABLE `#__users` (  `id` int(11) NOT NULL auto_increment,  `name` TEXT NOT NULL default '',  `username` varchar(150) NOT NULL default '',  `email` varchar(100) NOT NULL default '',  `password` varchar(100) NOT NULL default '',  `usertype` varchar(75) NOT NULL default '',  `block` tinyint(4) NOT NULL default '0',  `sendEmail` tinyint(4) default '0',  `gid` tinyint(3) unsigned NOT NULL default '1',  `registerDate` datetime NOT NULL default '0000-00-00 00:00:00',  `lastvisitDate` datetime NOT NULL default '0000-00-00 00:00:00',  `activation` varchar(100) NOT NULL default '',  `params` text NOT NULL,  PRIMARY KEY  (`id`),  KEY `usertype` (`usertype`),  KEY `idx_name` (`name`(255)),  KEY `gid_block` (`gid`, `block`),  KEY `username` (`username`),  KEY `email` (`email`)) TYPE=MyISAM;# --------------------------------------------------------## Table structure for table `#__weblinks`#CREATE TABLE `#__weblinks` (  `id` int(11) unsigned NOT NULL auto_increment,  `catid` int(11) NOT NULL default '0',  `sid` int(11) NOT NULL default '0',  `title` TEXT NOT NULL default '',  `alias` varchar(255) NOT NULL default '',  `url` varchar(250) NOT NULL default '',  `description` text NOT NULL default '',  `date` datetime NOT NULL default '0000-00-00 00:00:00',  `hits` int(11) NOT NULL default '0',  `published` tinyint(1) NOT NULL default '0',  `checked_out` int(11) NOT NULL default '0',  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',  `ordering` int(11) NOT NULL default '0',  `archived` tinyint(1) NOT NULL default '0',  `approved` tinyint(1) NOT NULL default '1',  `params` text NOT NULL,  PRIMARY KEY  (`id`),  KEY `catid` (`catid`,`published`,`archived`)) TYPE=MyISAM;# --------------------------------------------------------## Table structure for table `#__core_acl_aro`#CREATE TABLE `#__core_acl_aro` (  `id` int(11) NOT NULL auto_increment,  `section_value` varchar(240) NOT NULL default '0',  `value` varchar(240) NOT NULL default '',  `order_value` int(11) NOT NULL default '0',  `name` varchar(255) NOT NULL default '',  `hidden` int(11) NOT NULL default '0',  PRIMARY KEY  (`id`),  UNIQUE KEY `#__section_value_value_aro` (`section_value`(100),`value`(100)),  KEY `#__gacl_hidden_aro` (`hidden`)) TYPE=MyISAM;# --------------------------------------------------------## Table structure for table `#__core_acl_aro_map`#CREATE TABLE  `#__core_acl_aro_map` (  `acl_id` int(11) NOT NULL default '0',  `section_value` varchar(230) NOT NULL default '0',  `value` varchar(100) NOT NULL,  PRIMARY KEY  (`acl_id`,`section_value`,`value`)) TYPE=MyISAM ;# --------------------------------------------------------## Table structure for table `#__core_acl_aro_groups`#CREATE TABLE `#__core_acl_aro_groups` (  `id` int(11) NOT NULL auto_increment,  `parent_id` int(11) NOT NULL default '0',  `name` varchar(255) NOT NULL default '',  `lft` int(11) NOT NULL default '0',  `rgt` int(11) NOT NULL default '0',  `value` varchar(255) NOT NULL default '',  PRIMARY KEY  (`id`),  KEY `#__gacl_parent_id_aro_groups` (`parent_id`),  KEY `#__gacl_lft_rgt_aro_groups` (`lft`,`rgt`)) TYPE=MyISAM ;## Dumping data for table `#__core_acl_aro_groups`#INSERT INTO `#__core_acl_aro_groups` VALUES (17,0,'ROOT',1,22,'ROOT');INSERT INTO `#__core_acl_aro_groups` VALUES (28,17,'USERS',2,21,'USERS');INSERT INTO `#__core_acl_aro_groups` VALUES (29,28,'Public Frontend',3,12,'Public Frontend');INSERT INTO `#__core_acl_aro_groups` VALUES (18,29,'Registered',4,11,'Registered');INSERT INTO `#__core_acl_aro_groups` VALUES (19,18,'Author',5,10,'Author');INSERT INTO `#__core_acl_aro_groups` VALUES (20,19,'Editor',6,9,'Editor');INSERT INTO `#__core_acl_aro_groups` VALUES (21,20,'Publisher',7,8,'Publisher');INSERT INTO `#__core_acl_aro_groups` VALUES (30,28,'Public Backend',13,20,'Public Backend');INSERT INTO `#__core_acl_aro_groups` VALUES (23,30,'Manager',14,19,'Manager');INSERT INTO `#__core_acl_aro_groups` VALUES (24,23,'Administrator',15,18,'Administrator');INSERT INTO `#__core_acl_aro_groups` VALUES (25,24,'Super Administrator',16,17,'Super Administrator');# --------------------------------------------------------## Table structure for table `#__core_acl_groups_aro_map`#CREATE TABLE `#__core_acl_groups_aro_map` (  `group_id` int(11) NOT NULL default '0',  `section_value` varchar(240) NOT NULL default '',  `aro_id` int(11) NOT NULL default '0',  UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`)) TYPE=MyISAM ;# --------------------------------------------------------## Table structure for table `#__core_acl_aro_sections`#CREATE TABLE `#__core_acl_aro_sections` (  `id` int(11) NOT NULL auto_increment,  `value` varchar(230) NOT NULL default '',  `order_value` int(11) NOT NULL default '0',  `name` varchar(230) NOT NULL default '',  `hidden` int(11) NOT NULL default '0',  PRIMARY KEY  (`id`),  UNIQUE KEY `#__gacl_value_aro_sections` (`value`),  KEY `#__gacl_hidden_aro_sections` (`hidden`)) TYPE=MyISAM ;INSERT INTO `#__core_acl_aro_sections` VALUES (10,'users',1,'Users',0);# --------------------------------------------------------## Table structure for table `#__migration_backlinks`#CREATE TABLE #__migration_backlinks (	`itemid` INT(11) NOT NULL,	`name` VARCHAR(100) NOT NULL,	`url` TEXT NOT NULL,	`sefurl` TEXT NOT NULL,	`newurl` TEXT NOT NULL,	PRIMARY KEY(`itemid`)) TYPE=MyISAM ;# --------------------------------------------------------

⌨️ 快捷键说明

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