mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-11 03:04:09 +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:
@@ -204,16 +204,6 @@ BEGIN
|
||||
END;;
|
||||
|
||||
|
||||
# phpbb_cache
|
||||
CREATE TABLE phpbb_cache (
|
||||
var_name VARCHAR(252) NOT NULL,
|
||||
var_expires INTEGER DEFAULT 0 NOT NULL,
|
||||
var_data BLOB SUB_TYPE TEXT
|
||||
);;
|
||||
|
||||
ALTER TABLE phpbb_cache ADD PRIMARY KEY (var_name);;
|
||||
|
||||
|
||||
# phpbb_config
|
||||
CREATE TABLE phpbb_config (
|
||||
config_name VARCHAR(252) NOT NULL,
|
||||
@@ -565,6 +555,7 @@ ALTER TABLE phpbb_modules ADD PRIMARY KEY (module_id);;
|
||||
|
||||
CREATE INDEX phpbb_modules_module_enabled ON phpbb_modules(module_enabled);;
|
||||
CREATE INDEX phpbb_modules_left_right_id ON phpbb_modules(left_id, right_id);;
|
||||
CREATE INDEX phpbb_modules_class_left_id ON phpbb_modules(module_class, left_id);;
|
||||
|
||||
CREATE GENERATOR phpbb_modules_gen;;
|
||||
SET GENERATOR phpbb_modules_gen TO 0;;
|
||||
|
Reference in New Issue
Block a user