1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-28 12:30:42 +02:00

- make viewforum work again

- remove the lower case functions, they were stupid anyway
- added some indexes
- added a group_name_clean column


git-svn-id: file:///svn/phpbb/trunk@8315 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M
2008-01-08 06:44:05 +00:00
parent b4e64655af
commit 370e189f15
23 changed files with 197 additions and 460 deletions

View File

@@ -152,6 +152,7 @@ CREATE TABLE phpbb_config (
);
CREATE INDEX phpbb_config_is_dynamic ON phpbb_config (is_dynamic);
CREATE INDEX phpbb_config_config_name ON phpbb_config (config_name);
# Table: 'phpbb_confirm'
CREATE TABLE phpbb_confirm (
@@ -289,6 +290,7 @@ CREATE TABLE phpbb_groups (
group_type tinyint(4) NOT NULL DEFAULT '1',
group_founder_manage INTEGER UNSIGNED NOT NULL DEFAULT '0',
group_name varchar(255) NOT NULL DEFAULT '',
group_name_clean varchar(255) NOT NULL DEFAULT '',
group_desc text(65535) NOT NULL DEFAULT '',
group_desc_bitfield varchar(255) NOT NULL DEFAULT '',
group_desc_options INTEGER UNSIGNED NOT NULL DEFAULT '7',
@@ -960,6 +962,7 @@ CREATE TABLE phpbb_zebra (
PRIMARY KEY (user_id, zebra_id)
);
CREATE INDEX phpbb_zebra_zebra_user ON phpbb_zebra (zebra_id, user_id);
COMMIT;