842 lines
38 KiB
MySQL
842 lines
38 KiB
MySQL
|
|
# $Id: joomla_backward.sql 6311 2007-01-18 23:18:53Z hackwar $
|
||
|
|
# Traducida y ajustada para Joomla! 1.5 Spanish www.joomlaspanish.org 21-12-2207
|
||
|
|
# IMPORTANTE - THIS FILE MUST BE SAVED WITH UTF-8 ENCODING ONLY.
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__banner`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__banner` (
|
||
|
|
`bid` int(11) NOT NULL auto_increment,
|
||
|
|
`cid` int(11) NOT NULL default '0',
|
||
|
|
`type` varchar(90) NOT NULL default 'banner',
|
||
|
|
`name` TEXT NOT NULL default '',
|
||
|
|
`alias` varchar(255) NOT NULL default '',
|
||
|
|
`imptotal` int(11) NOT NULL default '0',
|
||
|
|
`impmade` int(11) NOT NULL default '0',
|
||
|
|
`clicks` int(11) NOT NULL default '0',
|
||
|
|
`imageurl` varchar(100) NOT NULL default '',
|
||
|
|
`clickurl` varchar(200) NOT NULL default '',
|
||
|
|
`date` datetime default NULL,
|
||
|
|
`showBanner` tinyint(1) NOT NULL default '0',
|
||
|
|
`checked_out` tinyint(1) NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`editor` varchar(150) default NULL,
|
||
|
|
`custombannercode` text,
|
||
|
|
`catid` INTEGER UNSIGNED NOT NULL DEFAULT 0,
|
||
|
|
`description` TEXT NOT NULL DEFAULT '',
|
||
|
|
`sticky` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
|
||
|
|
`ordering` INTEGER NOT NULL DEFAULT 0,
|
||
|
|
`publish_up` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`publish_down` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`tags` TEXT NOT NULL DEFAULT '',
|
||
|
|
`params` TEXT NOT NULL DEFAULT '',
|
||
|
|
PRIMARY KEY (`bid`),
|
||
|
|
KEY `viewbanner` (`showBanner`),
|
||
|
|
INDEX `idx_banner_catid`(`catid`)
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__bannerclient`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__bannerclient` (
|
||
|
|
`cid` int(11) NOT NULL auto_increment,
|
||
|
|
`name` TEXT NOT NULL default '',
|
||
|
|
`contact` TEXT NOT NULL default '',
|
||
|
|
`email` varchar(255) NOT NULL default '',
|
||
|
|
`extrainfo` text NOT NULL,
|
||
|
|
`checked_out` tinyint(1) NOT NULL default '0',
|
||
|
|
`checked_out_time` time default NULL,
|
||
|
|
`editor` varchar(150) default NULL,
|
||
|
|
PRIMARY KEY (`cid`)
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__bannertrack`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__bannertrack` (
|
||
|
|
`track_date` date NOT NULL,
|
||
|
|
`track_type` int(10) unsigned NOT NULL,
|
||
|
|
`banner_id` int(10) unsigned NOT NULL
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__categories`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__categories` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`parent_id` int(11) NOT NULL default 0,
|
||
|
|
`title` TEXT NOT NULL default '',
|
||
|
|
`name` TEXT NOT NULL default '',
|
||
|
|
`alias` varchar(255) NOT NULL default '',
|
||
|
|
`image` varchar(255) NOT NULL default '',
|
||
|
|
`section` varchar(150) 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',
|
||
|
|
`editor` varchar(150) default NULL,
|
||
|
|
`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 `cat_idx` (`section`,`published`,`access`),
|
||
|
|
KEY `idx_access` (`access`),
|
||
|
|
KEY `idx_checkout` (`checked_out`)
|
||
|
|
) TYPE=MyISAM ;
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__components`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__components` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`name` varchar(150) NOT NULL default '',
|
||
|
|
`link` varchar(255) NOT NULL default '',
|
||
|
|
`menuid` int(11) unsigned NOT NULL default '0',
|
||
|
|
`parent` int(11) unsigned NOT NULL default '0',
|
||
|
|
`admin_menu_link` varchar(255) NOT NULL default '',
|
||
|
|
`admin_menu_alt` TEXT NOT NULL default '',
|
||
|
|
`option` varchar(50) NOT NULL default '',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`admin_menu_img` varchar(255) NOT NULL default '',
|
||
|
|
`iscore` tinyint(4) NOT NULL default '0',
|
||
|
|
`params` text NOT NULL,
|
||
|
|
`enabled` tinyint(4) NOT NULL default '1',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `parent_option` (`parent`, `option`(32))
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
#
|
||
|
|
# Dumping data for table `#__components`
|
||
|
|
#
|
||
|
|
|
||
|
|
INSERT INTO `#__components` VALUES (1, 'Banners', '', 0, 0, '', 'Banner Management', 'com_banners', 0, 'js/ThemeOffice/component.png', 0, 'track_impressions=0\ntrack_clicks=0\ntag_prefix=\n\n', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (2, 'Banners', '', 0, 1, 'option=com_banners', 'Active Banners', 'com_banners', 1, 'js/ThemeOffice/edit.png', 0, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (3, 'Clientes', '', 0, 1, 'option=com_banners&c=client', 'Manage Clients', 'com_banners', 2, 'js/ThemeOffice/categories.png', 0, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (4, 'Enlaces Web', 'option=com_weblinks', 0, 0, '', 'Manage Weblinks', 'com_weblinks', 0, 'js/ThemeOffice/component.png', 0, 'show_comp_description=1\ncomp_description=\nshow_link_hits=1\nshow_link_description=1\nshow_other_cats=1\nshow_headings=1\nshow_page_title=1\nlink_target=0\nlink_icons=\n\n', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (5, 'Enlaces', '', 0, 4, 'option=com_weblinks', 'View existing weblinks', 'com_weblinks', 1, 'js/ThemeOffice/edit.png', 0, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (6, 'Categorías', '', 0, 4, 'option=com_categories§ion=com_weblinks', 'Manage weblink categories', '', 2, 'js/ThemeOffice/categories.png', 0, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (7, 'Contactos', 'option=com_contact', 0, 0, '', 'Edit contact details', 'com_contact', 0, 'js/ThemeOffice/component.png', 1, 'contact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=\nshow_headings=1\nshow_position=1\nshow_email=0\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nbannedEmail=\nbannedSubject=\nbannedText=\nsession=1\ncustomReply=0\n\n', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (8, 'Contactos', '', 0, 7, 'option=com_contact', 'Edit contact details', 'com_contact', 0, 'js/ThemeOffice/edit.png', 1, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (9, 'Categorías', '', 0, 7, 'option=com_categories§ion=com_contact_details', 'Manage contact categories', '', 2, 'js/ThemeOffice/categories.png', 1, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (10, 'Encuesta', 'option=com_poll', 0, 0, 'option=com_poll', 'Manage Polls', 'com_poll', 0, 'js/ThemeOffice/component.png', 0, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (11, 'News Feeds', 'option=com_newsfeeds', 0, 0, '', 'News Feeds Management', 'com_newsfeeds', 0, 'js/ThemeOffice/component.png', 0, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (12, 'Feeds', '', 0, 11, 'option=com_newsfeeds', 'Manage News Feeds', 'com_newsfeeds', 1, 'js/ThemeOffice/edit.png', 0, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (13, 'Categorías', '', 0, 11, 'option=com_categories§ion=com_newsfeeds', 'Manage Categories', '', 2, 'js/ThemeOffice/categories.png', 0, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (14, 'Usuario', 'option=com_user', 0, 0, '', '', 'com_user', 0, '', 1, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (15, 'Buscar', 'option=com_search', 0, 0, 'option=com_search', 'Search Statistics', 'com_search', 0, 'js/ThemeOffice/component.png', 1, 'enabled=0\n\n', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (16, 'Categorías', '', 0, 1, 'option=com_categories§ion=com_banner', 'Categories', '', 3, '', 1, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (17, 'Wrapper', 'option=com_wrapper', 0, 0, '', 'Wrapper', 'com_wrapper', 0, '', 1, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (18, 'Mail para', '', 0, 0, '', '', 'com_mailto', 0, '', 1, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (19, 'Administrador Media', '', 0, 0, 'option=com_media', 'Media Manager', 'com_media', 0, '', 1, 'upload_extensions=bmp,csv,doc,epg,gif,ico,jpg,odg,odp,ods,odt,pdf,png,ppt,swf,txt,xcf,xls,BMP,CSV,DOC,EPG,GIF,ICO,JPG,ODG,ODP,ODS,ODT,PDF,PNG,PPT,SWF,TXT,XCF,XLS\nupload_maxsize=10000000\nfile_path=images\nimage_path=images/stories\nrestrict_uploads=1\ncheck_mime=1\nimage_extensions=bmp,gif,jpg,png\nignore_extensions=\nupload_mime=image/jpeg,image/gif,image/png,image/bmp,application/x-shockwave-flash,application/msword,application/excel,application/pdf,application/powerpoint,text/plain,application/x-zip\nupload_mime_illegal=text/html', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (20, 'Artículos', 'option=com_content', 0, 0, '', '', 'com_content', 0, '', 1, 'show_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=0\n\n', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (21, 'Administrar Configuración', '', 0, 0, '', 'Configuration', 'com_config', 0, '', 1, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (22, 'Administrar Instalaciones', '', 0, 0, '', 'Installer', 'com_installer', 0, '', 1, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (23, 'Gestor de idiomas', '', 0, 0, '', 'Idiomas', 'com_languages', 0, '', 1, 'site=es-ES\nadministrator=es-ES\n\n', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (24, 'Mail masivo', '', 0, 0, '', 'Mass Mail', 'com_massmail', 0, '', 1, 'mailSubjectPrefix=\nmailBodySuffix=\n\n', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (25, 'Menú del editor', '', 0, 0, '', 'Menu Editor', 'com_menus', 0, '', 1, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (27, 'Mensajes', '', 0, 0, '', 'Messages', 'com_messages', 0, '', 1, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (28, 'Administrar modulos', '', 0, 0, '', 'Modules', 'com_modules', 0, '', 1, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (29, 'Administrar Plugin', '', 0, 0, '', 'Plugins', 'com_plugins', 0, '', 1, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (30, 'Administrar plantilla', '', 0, 0, '', 'Templates', 'com_templates', 0, '', 1, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (31, 'Administrar usuarios', '', 0, 0, '', 'Users', 'com_users', 0, '', 1, 'allowUserRegistration=1\nnew_usertype=Registered\nuseractivation=1\nfrontend_userparams=1\n\n', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (32, 'Administrar la caché', '', 0, 0, '', 'Cache', 'com_cache', 0, '', 1, '', 1);
|
||
|
|
INSERT INTO `#__components` VALUES (33, 'Panel de Control', '', 0, 0, '', 'Control Panel', 'com_cpanel', 0, '', 1, '', 1);
|
||
|
|
INSERT INTO `jos_components` VALUES(34, 'Administrador de Traducciones', 'option=com_translationsmanager', 0, 0, 'option=com_translationsmanager', 'Administrador de Traducciones', 'com_translationsmanager', 0, 'class:language', 0, '', 1);
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__contact_details`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__contact_details` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`name` TEXT NOT NULL default '',
|
||
|
|
`alias` varchar(255) NOT NULL default '',
|
||
|
|
`con_position` TEXT default NULL,
|
||
|
|
`address` text,
|
||
|
|
`suburb` TEXT default NULL,
|
||
|
|
`state` TEXT default NULL,
|
||
|
|
`country` TEXT default NULL,
|
||
|
|
`postcode` varchar(255) default NULL,
|
||
|
|
`telephone` varchar(255) default NULL,
|
||
|
|
`fax` varchar(255) default NULL,
|
||
|
|
`misc` mediumtext,
|
||
|
|
`image` varchar(255) default NULL,
|
||
|
|
`imagepos` varchar(60) default NULL,
|
||
|
|
`email_to` varchar(255) default NULL,
|
||
|
|
`default_con` tinyint(1) unsigned NOT NULL default '0',
|
||
|
|
`published` tinyint(1) unsigned 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',
|
||
|
|
`params` text NOT NULL,
|
||
|
|
`user_id` int(11) NOT NULL default '0',
|
||
|
|
`catid` int(11) NOT NULL default '0',
|
||
|
|
`access` tinyint(3) unsigned NOT NULL default '0',
|
||
|
|
`mobile` varchar(255) NOT NULL default '',
|
||
|
|
`webpage` varchar(255) NOT NULL default '',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `catid` (`catid`)
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__content`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__content` (
|
||
|
|
`id` int(11) unsigned NOT NULL auto_increment,
|
||
|
|
`title` TEXT NOT NULL default '',
|
||
|
|
`alias` varchar(255) NOT NULL default '',
|
||
|
|
`title_alias` TEXT NOT NULL default '',
|
||
|
|
`introtext` mediumtext NOT NULL,
|
||
|
|
`fulltext` mediumtext NOT NULL,
|
||
|
|
`state` tinyint(3) NOT NULL default '0',
|
||
|
|
`sectionid` int(11) unsigned NOT NULL default '0',
|
||
|
|
`mask` int(11) unsigned NOT NULL default '0',
|
||
|
|
`catid` int(11) unsigned NOT NULL default '0',
|
||
|
|
`created` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`created_by` int(11) unsigned NOT NULL default '0',
|
||
|
|
`created_by_alias` TEXT NOT NULL default '',
|
||
|
|
`modified` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`modified_by` int(11) unsigned 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',
|
||
|
|
`publish_up` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`publish_down` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`images` text NOT NULL,
|
||
|
|
`urls` text NOT NULL,
|
||
|
|
`attribs` text NOT NULL,
|
||
|
|
`version` int(11) unsigned NOT NULL default '1',
|
||
|
|
`parentid` int(11) unsigned NOT NULL default '0',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`metakey` text NOT NULL,
|
||
|
|
`metadesc` text NOT NULL,
|
||
|
|
`access` int(11) unsigned NOT NULL default '0',
|
||
|
|
`hits` int(11) unsigned NOT NULL default '0',
|
||
|
|
`metadata` TEXT NOT NULL DEFAULT '',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `idx_section` (`sectionid`),
|
||
|
|
KEY `idx_access` (`access`),
|
||
|
|
KEY `idx_checkout` (`checked_out`),
|
||
|
|
KEY `idx_state` (`state`),
|
||
|
|
KEY `idx_catid` (`catid`),
|
||
|
|
KEY `idx_createdby` (`created_by`)
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__content_frontpage`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__content_frontpage` (
|
||
|
|
`content_id` int(11) NOT NULL default '0',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`content_id`)
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__content_rating`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__content_rating` (
|
||
|
|
`content_id` int(11) NOT NULL default '0',
|
||
|
|
`rating_sum` int(11) unsigned NOT NULL default '0',
|
||
|
|
`rating_count` int(11) unsigned NOT NULL default '0',
|
||
|
|
`lastip` varchar(150) NOT NULL default '',
|
||
|
|
PRIMARY KEY (`content_id`)
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
# Table structure for table `#__core_log_items`
|
||
|
|
|
||
|
|
CREATE TABLE `#__core_log_items` (
|
||
|
|
`time_stamp` date NOT NULL default '0000-00-00',
|
||
|
|
`item_table` varchar(50) NOT NULL default '',
|
||
|
|
`item_id` int(11) unsigned NOT NULL default '0',
|
||
|
|
`hits` int(11) unsigned NOT NULL default '0'
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
# Table structure for table `#__core_log_searches`
|
||
|
|
|
||
|
|
CREATE TABLE `#__core_log_searches` (
|
||
|
|
`search_term` TEXT NOT NULL default '',
|
||
|
|
`hits` int(11) unsigned NOT NULL default '0'
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__groups`
|
||
|
|
#
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
CREATE TABLE `#__groups` (
|
||
|
|
`id` tinyint(3) unsigned NOT NULL default '0',
|
||
|
|
`name` varchar(150) NOT NULL default '',
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
#
|
||
|
|
# Dumping data for table `#__groups`
|
||
|
|
#
|
||
|
|
|
||
|
|
INSERT INTO `#__groups` VALUES (0, 'Public');
|
||
|
|
INSERT INTO `#__groups` VALUES (1, 'Registered');
|
||
|
|
INSERT INTO `#__groups` VALUES (2, 'Special');
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__plugins`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__plugins` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`name` TEXT NOT NULL default '',
|
||
|
|
`element` TEXT NOT NULL default '',
|
||
|
|
`folder` varchar(100) NOT NULL default '',
|
||
|
|
`access` tinyint(3) unsigned NOT NULL default '0',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`published` tinyint(3) NOT NULL default '0',
|
||
|
|
`iscore` tinyint(3) NOT NULL default '0',
|
||
|
|
`client_id` tinyint(3) 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',
|
||
|
|
`params` text NOT NULL,
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `idx_folder` (`published`,`client_id`,`access`,`folder`)
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
INSERT INTO `#__plugins` VALUES (1, 'Authentication - Joomla', 'joomla', 'authentication', 0, 1, 1, 1, 0, 0, '0000-00-00 00:00:00', '');
|
||
|
|
INSERT INTO `#__plugins` VALUES (2, 'Authentication - LDAP', 'ldap', 'authentication', 0, 2, 0, 1, 0, 0, '0000-00-00 00:00:00', 'host=\nport=389\nuse_ldapV3=0\nnegotiate_tls=0\nno_referrals=0\nauth_method=bind\nbase_dn=\nsearch_string=\nusers_dn=\nusername=\npassword=\nldap_fullname=fullName\nldap_email=mail\nldap_uid=uid\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (3, 'Authentication - GMail', 'gmail', 'authentication', 0, 4, 0, 0, 0, 0, '0000-00-00 00:00:00', '');
|
||
|
|
INSERT INTO `#__plugins` VALUES (4, 'Authentication - OpenID', 'openid', 'authentication', 0, 3, 0, 0, 0, 0, '0000-00-00 00:00:00', '');
|
||
|
|
INSERT INTO `#__plugins` VALUES (5, 'Usuario - Joomla!', 'joomla', 'user', 0, 0, 1, 0, 0, 0, '0000-00-00 00:00:00', 'autoregister=1\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (6, 'Search - Content','content','search',0,1,1,1,0,0,'0000-00-00 00:00:00','search_limit=50\nsearch_content=1\nsearch_uncategorised=1\nsearch_archived=1\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (7, 'Search - Contacts','contacts','search',0,3,1,1,0,0,'0000-00-00 00:00:00','search_limit=50\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (8, 'Search - Categories', 'categories', 'search', 0, 4, 1, 0, 0, 0, '0000-00-00 00:00:00', 'search_limit=50\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (9, 'Search - Sections', 'sections', 'search', 0, 5, 1, 0, 0, 0, '0000-00-00 00:00:00', 'search_limit=50\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (10, 'Search - Newsfeeds', 'newsfeeds', 'search', 0, 6, 1, 0, 0, 0, '0000-00-00 00:00:00', 'search_limit=50\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (11, 'Search - Weblinks','weblinks','search',0,2,1,1,0,0,'0000-00-00 00:00:00','search_limit=50\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (12, 'Content - Pagebreak','pagebreak','content',0,10000,1,1,0,0,'0000-00-00 00:00:00','enabled=1\ntitle=1\nmultipage_toc=1\nshowall=1\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (13, 'Content - Rating','vote','content',0,4,1,1,0,0,'0000-00-00 00:00:00','');
|
||
|
|
INSERT INTO `#__plugins` VALUES (14, 'Content - Email Cloaking', 'emailcloak', 'content', 0, 5, 1, 0, 0, 0, '0000-00-00 00:00:00', 'mode=1\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (15, 'Content - Code Hightlighter (GeSHi)', 'geshi', 'content', 0, 5, 0, 0, 0, 0, '0000-00-00 00:00:00', '');
|
||
|
|
INSERT INTO `#__plugins` VALUES (16, 'Content - Load Module', 'loadmodule', 'content', 0, 6, 1, 0, 0, 0, '0000-00-00 00:00:00', 'enabled=1\nstyle=0\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (17, 'Content - Page Navigation','pagenavigation','content',0,2,1,1,0,0,'0000-00-00 00:00:00','position=1\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (18, 'Editor - No Editor','none','editors',0,0,1,1,0,0,'0000-00-00 00:00:00','');
|
||
|
|
INSERT INTO `#__plugins` VALUES (19, 'Editor - TinyMCE 2.0', 'tinymce', 'editors', 0, 0, 1, 1, 0, 0, '0000-00-00 00:00:00', 'theme=advanced\ncleanup=1\ncleanup_startup=0\nautosave=0\ncompressed=0\nrelative_urls=1\ntext_direction=ltr\nlang_mode=0\nlang_code=es\ninvalid_elements=applet\ncontent_css=1\ncontent_css_custom=\nnewlines=0\ntoolbar=top\nhr=1\nsmilies=1\ntable=1\nstyle=1\nlayer=1\nxhtmlxtras=0\ntemplate=0\ndirectionality=1\nfullscreen=1\nhtml_height=550\nhtml_width=750\npreview=1\ninsertdate=1\nformat_date=%Y-%m-%d\ninserttime=1\nformat_time=%H:%M:%S\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (20, 'Editor - XStandard Lite 2.0', 'xstandard', 'editors', 0, 0, 1, 1, 0, 0, '0000-00-00 00:00:00', '');
|
||
|
|
INSERT INTO `#__plugins` VALUES (21, 'Editor Button - Image','image','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00','');
|
||
|
|
INSERT INTO `#__plugins` VALUES (22, 'Editor Button - Pagebreak','pagebreak','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00','');
|
||
|
|
INSERT INTO `#__plugins` VALUES (23, 'Editor Button - Readmore','readmore','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00','');
|
||
|
|
INSERT INTO `#__plugins` VALUES (24, 'XML-RPC - Joomla', 'joomla', 'xmlrpc', 0, 7, 0, 1, 0, 0, '0000-00-00 00:00:00', '');
|
||
|
|
INSERT INTO `#__plugins` VALUES (25, 'XML-RPC - Blogger API', 'blogger', 'xmlrpc', 0, 7, 0, 1, 0, 0, '0000-00-00 00:00:00', 'catid=1\nsectionid=0\n\n');
|
||
|
|
#INSERT INTO `#__plugins` VALUES (26, 'XML-RPC - MetaWeblog API', 'metaweblog', 'xmlrpc', 0, 7, 0, 1, 0, 0, '0000-00-00 00:00:00', '');
|
||
|
|
INSERT INTO `#__plugins` VALUES (27, 'Sistema - SEF','sef','system',0,1,1,0,0,0,'0000-00-00 00:00:00','');
|
||
|
|
INSERT INTO `#__plugins` VALUES (28, 'Sistema - Debug', 'debug', 'system', 0, 2, 1, 0, 0, 0, '0000-00-00 00:00:00', 'queries=1\nmemory=1\nlangauge=1\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (29, 'Sistema - Legacy', 'legacy', 'system', 0, 3, 0, 1, 0, 0, '0000-00-00 00:00:00', 'route=0\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (30, 'Sistema - Cache', 'cache', 'system', 0, 4, 0, 1, 0, 0, '0000-00-00 00:00:00', 'browsercache=0\ncachetime=15\n\n');
|
||
|
|
INSERT INTO `#__plugins` VALUES (31, 'Sistema - Log', 'log', 'system', 0, 5, 0, 1, 0, 0, '0000-00-00 00:00:00', '');
|
||
|
|
INSERT INTO `#__plugins` VALUES (32, 'Sistema - Remember Me', 'remember', 'system', 0, 6, 1, 1, 0, 0, '0000-00-00 00:00:00', '');
|
||
|
|
INSERT INTO `#__plugins` VALUES (33, 'Sistema - Backlink', 'backlink', 'system', 0, 7, 0, 1, 0, 0, '0000-00-00 00:00:00', '');
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__menu`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__menu` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`menutype` varchar(225) default NULL,
|
||
|
|
`name` TEXT default NULL,
|
||
|
|
`alias` varchar(255) NOT NULL default '',
|
||
|
|
`link` text,
|
||
|
|
`type` varchar(150) NOT NULL default '',
|
||
|
|
`published` tinyint(1) NOT NULL default 0,
|
||
|
|
`parent` int(11) unsigned NOT NULL default 0,
|
||
|
|
`componentid` int(11) unsigned NOT NULL default 0,
|
||
|
|
`sublevel` int(11) default 0,
|
||
|
|
`ordering` int(11) default 0,
|
||
|
|
`checked_out` int(11) unsigned NOT NULL default 0,
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`pollid` int(11) NOT NULL default 0,
|
||
|
|
`browserNav` tinyint(4) default 0,
|
||
|
|
`access` tinyint(3) unsigned NOT NULL default 0,
|
||
|
|
`utaccess` tinyint(3) unsigned NOT NULL default 0,
|
||
|
|
`params` text NOT NULL,
|
||
|
|
`lft` int(11) unsigned NOT NULL default 0,
|
||
|
|
`rgt` int(11) unsigned NOT NULL default 0,
|
||
|
|
`home` INTEGER(1) UNSIGNED NOT NULL DEFAULT 0,
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `componentid` (`componentid`,`menutype`,`published`,`access`),
|
||
|
|
KEY `menutype` (`menutype`)
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
INSERT INTO `#__menu` VALUES (1, 'mainmenu', 'Inicio', 'home', 'index.php?option=com_content&view=frontpage', 'component', 1, 0, 20, 0, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 3, 'show_page_title=1\npage_title=Bienvenidos a la portada\nshow_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\nshow_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby_pri=\norderby_sec=front\nshow_pagination=2\nshow_pagination_results=1\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n', 0, 0, 1);
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__menu_types`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__menu_types` (
|
||
|
|
`id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
|
||
|
|
`menutype` VARCHAR(225) NOT NULL DEFAULT '',
|
||
|
|
`title` TEXT NOT NULL DEFAULT '',
|
||
|
|
`description` TEXT NOT NULL DEFAULT '',
|
||
|
|
PRIMARY KEY(`id`),
|
||
|
|
UNIQUE `menutype`(`menutype`)
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
INSERT INTO `#__menu_types` VALUES (1, 'mainmenu', 'Menú principal', 'The main menu for the site');
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__messages`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__messages` (
|
||
|
|
`message_id` int(10) unsigned NOT NULL auto_increment,
|
||
|
|
`user_id_from` int(10) unsigned NOT NULL default '0',
|
||
|
|
`user_id_to` int(10) unsigned NOT NULL default '0',
|
||
|
|
`folder_id` int(10) unsigned NOT NULL default '0',
|
||
|
|
`date_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`state` int(11) NOT NULL default '0',
|
||
|
|
`priority` int(1) unsigned NOT NULL default '0',
|
||
|
|
`subject` text NOT NULL default '',
|
||
|
|
`message` text NOT NULL,
|
||
|
|
PRIMARY KEY (`message_id`),
|
||
|
|
KEY `useridto_state` (`user_id_to`, `state`)
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__messages_cfg`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__messages_cfg` (
|
||
|
|
`user_id` int(10) unsigned NOT NULL default '0',
|
||
|
|
`cfg_name` TEXT NOT NULL default '',
|
||
|
|
`cfg_value` TEXT NOT NULL default '',
|
||
|
|
UNIQUE `idx_user_var_name` (`user_id`,`cfg_name`(100))
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__modules`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__modules` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`title` text NOT NULL,
|
||
|
|
`content` text NOT NULL,
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`position` varchar(150) default NULL,
|
||
|
|
`checked_out` int(11) unsigned NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`published` tinyint(1) NOT NULL default '0',
|
||
|
|
`module` varchar(150) default NULL,
|
||
|
|
`numnews` int(11) NOT NULL default '0',
|
||
|
|
`access` tinyint(3) unsigned NOT NULL default '0',
|
||
|
|
`showtitle` tinyint(3) unsigned NOT NULL default '1',
|
||
|
|
`params` text NOT NULL,
|
||
|
|
`iscore` tinyint(4) NOT NULL default '0',
|
||
|
|
`client_id` tinyint(4) NOT NULL default '0',
|
||
|
|
`control` TEXT NOT NULL DEFAULT '',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `published` (`published`,`access`),
|
||
|
|
KEY `newsfeeds` (`module`,`published`)
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
INSERT INTO `#__modules` VALUES (1, 'Menú principal', '', 1, 'left', 0, '0000-00-00 00:00:00', 1, 'mod_mainmenu', 0, 0, 1, 'menutype=mainmenu\nmoduleclass_sfx=_menu\n', 1, 0, '');
|
||
|
|
INSERT INTO `#__modules` VALUES (2, 'Acceso', '', 1, 'login', 0, '0000-00-00 00:00:00', 1, 'mod_login', 0, 0, 1, '', 1, 1, '');
|
||
|
|
INSERT INTO `#__modules` VALUES (3, 'Popular','',3,'cpanel',0,'0000-00-00 00:00:00',1,'mod_popular',0,2,1,'',0, 1, '');
|
||
|
|
INSERT INTO `#__modules` VALUES (4, 'Artículos añadidos recientemente','',4,'cpanel',0,'0000-00-00 00:00:00',1,'mod_latest',0,2,1,'ordering=c_dsc\nuser_id=0\ncache=0\n\n',0, 1, '');
|
||
|
|
INSERT INTO `#__modules` VALUES (5, 'Menú de estadísticas','',5,'cpanel',0,'0000-00-00 00:00:00',1,'mod_stats',0,2,1,'',0, 1, '');
|
||
|
|
INSERT INTO `#__modules` VALUES (6, 'Los mensajes no leídos','',1,'header',0,'0000-00-00 00:00:00',1,'mod_unread',0,2,1,'',1, 1, '');
|
||
|
|
INSERT INTO `#__modules` VALUES (7, 'Usuarios Online','',2,'header',0,'0000-00-00 00:00:00',1,'mod_online',0,2,1,'',1, 1, '');
|
||
|
|
INSERT INTO `#__modules` VALUES (8, 'Toolbar','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_toolbar',0,2,1,'',1, 1, '');
|
||
|
|
INSERT INTO `#__modules` VALUES (9, 'Iconos rápidos','',1,'icon',0,'0000-00-00 00:00:00',1,'mod_quickicon',0,2,1,'',1,1, '');
|
||
|
|
INSERT INTO `#__modules` VALUES (10, 'Usuarios identificados','',2,'cpanel',0,'0000-00-00 00:00:00',1,'mod_logged',0,2,1,'',0,1, '');
|
||
|
|
INSERT INTO `#__modules` VALUES (11, 'Footer', '', 0, 'footer', 0, '0000-00-00 00:00:00', 1, 'mod_footer', 0, 0, 1, '', 1, 1, '');
|
||
|
|
INSERT INTO `#__modules` VALUES (12, 'Menú Admin','', 1,'menu', 0,'0000-00-00 00:00:00', 1,'mod_menu', 0, 2, 1, '', 0, 1, '');
|
||
|
|
INSERT INTO `#__modules` VALUES (13, 'Admin SubMenu','', 1,'submenu', 0,'0000-00-00 00:00:00', 1,'mod_submenu', 0, 2, 1, '', 0, 1, '');
|
||
|
|
INSERT INTO `#__modules` VALUES (14, 'Estado del usuario','', 1,'status', 0,'0000-00-00 00:00:00', 1,'mod_status', 0, 2, 1, '', 0, 1, '');
|
||
|
|
INSERT INTO `#__modules` VALUES (15, 'Título','', 1,'title', 0,'0000-00-00 00:00:00', 1,'mod_title', 0, 2, 1, '', 0, 1, '');
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__modules_menu`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__modules_menu` (
|
||
|
|
`moduleid` int(11) NOT NULL default '0',
|
||
|
|
`menuid` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`moduleid`,`menuid`)
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
#
|
||
|
|
# Dumping data for table `#__modules_menu`
|
||
|
|
#
|
||
|
|
|
||
|
|
INSERT INTO `#__modules_menu` VALUES (1,0);
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__newsfeeds`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__newsfeeds` (
|
||
|
|
`catid` int(11) NOT NULL default '0',
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`name` text NOT NULL,
|
||
|
|
`alias` varchar(255) NOT NULL default '',
|
||
|
|
`link` text NOT NULL,
|
||
|
|
`filename` varchar(200) default NULL,
|
||
|
|
`published` tinyint(1) NOT NULL default '0',
|
||
|
|
`numarticles` int(11) unsigned NOT NULL default '1',
|
||
|
|
`cache_time` int(11) unsigned NOT NULL default '3600',
|
||
|
|
`checked_out` tinyint(3) 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',
|
||
|
|
`rtl` tinyint(4) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `published` (`published`),
|
||
|
|
KEY `catid` (`catid`)
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__poll_data`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__poll_data` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`pollid` int(11) NOT NULL default '0',
|
||
|
|
`text` text NOT NULL default '',
|
||
|
|
`hits` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `pollid` (`pollid`,`text`(1))
|
||
|
|
) TYPE=MyISAM;
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|
||
|
|
|
||
|
|
#
|
||
|
|
# Table structure for table `#__poll_date`
|
||
|
|
#
|
||
|
|
|
||
|
|
CREATE TABLE `#__poll_date` (
|
||
|
|
`id` bigint(20) NOT NULL auto_increment,
|
||
|
|
`date` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`vote_id` int(11) NOT NULL default '0',
|
||
|
|
`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` (
|
||
|
|
`section_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 (`section_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 ;
|
||
|
|
|
||
|
|
# --------------------------------------------------------
|