0byt3m1n1
Path:
/
data
/
applications
/
aps
/
b2evolution
/
4.1.5b-1.bak
/
standard
/
htdocs
/
inc
/
_core
/
model
/
[
Home
]
File: __core.install.php
<?php /** * This is the install file for the core modules * * This file is part of the evoCore framework - {@link http://evocore.net/} * See also {@link http://sourceforge.net/projects/evocms/}. * * @copyright (c)2003-2011 by Francois Planque - {@link http://fplanque.com/} * * {@internal License choice * - If you have received this file as part of a package, please find the license.txt file in * the same folder or the closest folder above for complete license terms. * - If you have received this file individually (e-g: from http://evocms.cvs.sourceforge.net/) * then you must choose one of the following licenses before using the file: * - GNU General Public License 2 (GPL) - http://www.opensource.org/licenses/gpl-license.php * - Mozilla Public License 1.1 (MPL) - http://www.opensource.org/licenses/mozilla1.1.php * }} * * {@internal Open Source relicensing agreement: * }} * * @package evocore * * {@internal Below is a list of authors who have contributed to design/coding of this file: }} * @author fplanque: Francois PLANQUE. * * @version $Id: __core.install.php 9 2011-10-24 22:32:00Z fplanque $ */ if( !defined('EVO_CONFIG_LOADED') ) die( 'Please, do not access this page directly.' ); global $db_storage_charset; // fp> TODO: upgrade procedure should check for proper charset. (and for ENGINE too) // fp> TODO: we should actually use a DEFAULT COLLATE, maybe have a DD::php_to_mysql_collate( $php_charset ) -> returning a Mysql collation /** * The b2evo database scheme. * * This gets updated through {@link db_delta()} which generates the queries needed to get * to this scheme. * * Please see {@link db_delta()} for things to take care of. */ $schema_queries = array( 'T_groups' => array( 'Creating table for Groups', "CREATE TABLE T_groups ( grp_ID int(11) NOT NULL auto_increment, grp_name varchar(50) NOT NULL default '', grp_perm_blogs enum('user','viewall','editall') NOT NULL default 'user', grp_perm_bypass_antispam TINYINT(1) NOT NULL DEFAULT 0, grp_perm_xhtmlvalidation VARCHAR(10) NOT NULL default 'always', grp_perm_xhtmlvalidation_xmlrpc VARCHAR(10) NOT NULL default 'always', grp_perm_xhtml_css_tweaks TINYINT(1) NOT NULL DEFAULT 0, grp_perm_xhtml_iframes TINYINT(1) NOT NULL DEFAULT 0, grp_perm_xhtml_javascript TINYINT(1) NOT NULL DEFAULT 0, grp_perm_xhtml_objects TINYINT(1) NOT NULL DEFAULT 0, grp_perm_stats enum('none','user','view','edit') NOT NULL default 'none', grp_perm_users enum('none','view','edit') NOT NULL default 'none', PRIMARY KEY grp_ID (grp_ID) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_groups__groupsettings' => array( 'Creating table for Group Settings', "CREATE TABLE T_groups__groupsettings ( gset_grp_ID INT(11) UNSIGNED NOT NULL, gset_name VARCHAR(30) NOT NULL, gset_value VARCHAR(255) NULL, PRIMARY KEY (gset_grp_ID, gset_name) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_settings' => array( 'Creating table for Settings', "CREATE TABLE T_settings ( set_name VARCHAR( 30 ) NOT NULL , set_value VARCHAR( 255 ) NULL , PRIMARY KEY ( set_name ) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_global__cache' => array( 'Creating table for Caches', "CREATE TABLE T_global__cache ( cach_name VARCHAR( 30 ) NOT NULL , cach_cache MEDIUMBLOB NULL , PRIMARY KEY ( cach_name ) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_users' => array( 'Creating table for Users', "CREATE TABLE T_users ( user_ID int(11) unsigned NOT NULL auto_increment, user_login varchar(20) NOT NULL, user_pass CHAR(32) NOT NULL, user_firstname varchar(50) NULL, user_lastname varchar(50) NULL, user_nickname varchar(50) NULL, user_icq int(11) unsigned NULL, user_email varchar(255) NOT NULL, user_url varchar(255) NULL, user_ip varchar(15) NULL, user_domain varchar(200) NULL, user_browser varchar(200) NULL, dateYMDhour datetime NOT NULL DEFAULT '2000-01-01 00:00:00', user_level int unsigned DEFAULT 0 NOT NULL, user_aim varchar(50) NULL, user_msn varchar(100) NULL, user_yim varchar(50) NULL, user_locale varchar(20) DEFAULT 'en-EU' NOT NULL, user_idmode varchar(20) NOT NULL DEFAULT 'login', user_allow_msgform TINYINT NOT NULL DEFAULT '2', user_notify tinyint(1) NOT NULL default 0, user_notify_moderation tinyint(1) NOT NULL default 0 COMMENT 'Notify me by email whenever a comment is awaiting moderation on one of my blogs', user_unsubscribe_key varchar(32) NOT NULL default '' COMMENT 'A specific key, it is used when a user wants to unsubscribe from a post comments without signing in', user_showonline tinyint(1) NOT NULL default 1, user_gender char(1) NULL, user_grp_ID int(4) NOT NULL default 1, user_validated tinyint(1) NOT NULL DEFAULT 0, user_avatar_file_ID int(10) unsigned default NULL, user_ctry_ID int(10) unsigned NULL, user_source varchar(30) NULL, PRIMARY KEY user_ID (user_ID), UNIQUE user_login (user_login), KEY user_grp_ID (user_grp_ID) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_users__fielddefs' => array( 'Creating table for User field definitions', "CREATE TABLE T_users__fielddefs ( ufdf_ID int(10) unsigned NOT NULL, ufdf_type char(8) NOT NULL, ufdf_name varchar(255) NOT NULL, PRIMARY KEY (ufdf_ID) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_users__fields' => array( 'Creating table for User fields', "CREATE TABLE T_users__fields ( uf_ID int(10) unsigned NOT NULL auto_increment, uf_user_ID int(10) unsigned NOT NULL, uf_ufdf_ID int(10) unsigned NOT NULL, uf_varchar varchar(255) NOT NULL, PRIMARY KEY (uf_ID) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_locales' => array( 'Creating table for Locales', "CREATE TABLE T_locales ( loc_locale varchar(20) NOT NULL default '', loc_charset varchar(15) NOT NULL default 'iso-8859-1', loc_datefmt varchar(20) NOT NULL default 'y-m-d', loc_timefmt varchar(20) NOT NULL default 'H:i:s', loc_startofweek TINYINT UNSIGNED NOT NULL DEFAULT 1, loc_name varchar(40) NOT NULL default '', loc_messages varchar(20) NOT NULL default '', loc_priority tinyint(4) UNSIGNED NOT NULL default '0', loc_enabled tinyint(4) NOT NULL default '1', PRIMARY KEY loc_locale( loc_locale ) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset COMMENT='saves available locales' " ), 'T_antispam' => array( 'Creating table for Antispam Blacklist', "CREATE TABLE T_antispam ( aspm_ID bigint(11) NOT NULL auto_increment, aspm_string varchar(80) NOT NULL, aspm_source enum( 'local','reported','central' ) NOT NULL default 'reported', PRIMARY KEY aspm_ID (aspm_ID), UNIQUE aspm_string (aspm_string) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_users__usersettings' => array( 'Creating user settings table', "CREATE TABLE T_users__usersettings ( uset_user_ID INT(11) UNSIGNED NOT NULL, uset_name VARCHAR( 30 ) NOT NULL, uset_value VARCHAR( 255 ) NULL, PRIMARY KEY ( uset_user_ID, uset_name ) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_plugins' => array( 'Creating plugins table', "CREATE TABLE T_plugins ( plug_ID INT(11) UNSIGNED NOT NULL auto_increment, plug_priority TINYINT NOT NULL default 50, plug_classname VARCHAR(40) NOT NULL default '', plug_code VARCHAR(32) NULL, plug_apply_rendering ENUM( 'stealth', 'always', 'opt-out', 'opt-in', 'lazy', 'never' ) NOT NULL DEFAULT 'never', plug_version VARCHAR(42) NOT NULL default '0', plug_name VARCHAR(255) NULL default NULL, plug_shortdesc VARCHAR(255) NULL default NULL, plug_status ENUM( 'enabled', 'disabled', 'needs_config', 'broken' ) NOT NULL, plug_spam_weight TINYINT UNSIGNED NOT NULL DEFAULT 1, PRIMARY KEY ( plug_ID ), UNIQUE plug_code( plug_code ), INDEX plug_status( plug_status ) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_pluginsettings' => array( 'Creating plugin settings table', "CREATE TABLE T_pluginsettings ( pset_plug_ID INT(11) UNSIGNED NOT NULL, pset_name VARCHAR( 30 ) NOT NULL, pset_value TEXT NULL, PRIMARY KEY ( pset_plug_ID, pset_name ) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_pluginusersettings' => array( 'Creating plugin user settings table', "CREATE TABLE T_pluginusersettings ( puset_plug_ID INT(11) UNSIGNED NOT NULL, puset_user_ID INT(11) UNSIGNED NOT NULL, puset_name VARCHAR( 30 ) NOT NULL, puset_value TEXT NULL, PRIMARY KEY ( puset_plug_ID, puset_user_ID, puset_name ) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_pluginevents' => array( 'Creating plugin events table', "CREATE TABLE T_pluginevents( pevt_plug_ID INT(11) UNSIGNED NOT NULL, pevt_event VARCHAR(40) NOT NULL, pevt_enabled TINYINT NOT NULL DEFAULT 1, PRIMARY KEY( pevt_plug_ID, pevt_event ) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_cron__task' => array( 'Creating cron tasks table', "CREATE TABLE T_cron__task( ctsk_ID int(10) unsigned not null AUTO_INCREMENT, ctsk_start_datetime datetime not null DEFAULT '2000-01-01 00:00:00', ctsk_repeat_after int(10) unsigned, ctsk_name varchar(50) not null, ctsk_controller varchar(50) not null, ctsk_params text, PRIMARY KEY (ctsk_ID) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_cron__log' => array( 'Creating cron tasks table', "CREATE TABLE T_cron__log( clog_ctsk_ID int(10) unsigned not null, clog_realstart_datetime datetime not null DEFAULT '2000-01-01 00:00:00', clog_realstop_datetime datetime, clog_status enum('started','finished','error','timeout') not null default 'started', clog_messages text, PRIMARY KEY (clog_ctsk_ID) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_country' => array( 'Creating Countries table', "CREATE TABLE T_country ( ctry_ID int(10) unsigned NOT NULL auto_increment, ctry_code char(2) NOT NULL, ctry_name varchar(40) NOT NULL, ctry_curr_ID int(10) unsigned NULL, ctry_enabled tinyint(1) NOT NULL DEFAULT 1, PRIMARY KEY ctry_ID (ctry_ID), UNIQUE ctry_code (ctry_code) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_currency' => array( 'Creating Currencies table', "CREATE TABLE T_currency ( curr_ID int(10) unsigned NOT NULL auto_increment, curr_code char(3) NOT NULL, curr_shortcut varchar(30) NOT NULL, curr_name varchar(40) NOT NULL, curr_enabled tinyint(1) NOT NULL DEFAULT 1, PRIMARY KEY curr_ID (curr_ID), UNIQUE curr_code (curr_code) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), 'T_slug' => array( 'Creating table for slugs', "CREATE TABLE T_slug ( slug_ID int(10) unsigned NOT NULL auto_increment, slug_title varchar(255) NOT NULL COLLATE ascii_bin, slug_type char(6) NOT NULL DEFAULT 'item', slug_itm_ID int(11) unsigned, PRIMARY KEY slug_ID (slug_ID), UNIQUE slug_title (slug_title) ) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ), ); /* * $Log: __core.install.php,v $ */ ?>