mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
- removed db cache (might re-appear, but for now we do not see the need for it)
- all changes to styles/subsilver/template are purely cosmetic (no functional changes) - cosmetics - bugfixes - add index to modules table - use modules ordering code for forums too git-svn-id: file:///svn/phpbb/trunk@6073 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -132,14 +132,6 @@ CREATE TABLE phpbb_bots (
|
||||
KEY bot_active (bot_active)
|
||||
);
|
||||
|
||||
# Table: 'phpbb_cache'
|
||||
CREATE TABLE phpbb_cache (
|
||||
var_name varchar(255) DEFAULT '' NOT NULL,
|
||||
var_expires int(10) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
var_data mediumtext,
|
||||
PRIMARY KEY (var_name)
|
||||
);
|
||||
|
||||
# Table: 'phpbb_config'
|
||||
CREATE TABLE phpbb_config (
|
||||
config_name varchar(255) NOT NULL,
|
||||
@@ -362,7 +354,8 @@ CREATE TABLE phpbb_modules (
|
||||
module_auth varchar(255) DEFAULT '' NOT NULL,
|
||||
PRIMARY KEY (module_id),
|
||||
KEY left_right_id (left_id, right_id),
|
||||
KEY module_enabled (module_enabled)
|
||||
KEY module_enabled (module_enabled),
|
||||
KEY class_left_id (module_class, left_id)
|
||||
);
|
||||
|
||||
# Table: 'phpbb_poll_options'
|
||||
|
Reference in New Issue
Block a user