1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

looks like I forgot to commit these two files :o

git-svn-id: file:///svn/phpbb/trunk@5476 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Nils Adermann
2006-01-19 16:38:00 +00:00
parent 38a63d94be
commit 93960a1b8e
2 changed files with 34 additions and 10 deletions

View File

@@ -564,14 +564,13 @@ CREATE TABLE phpbb_reports (
# Table: phpbb_search_results
CREATE TABLE phpbb_search_results (
search_id INTEGER PRIMARY KEY NOT NULL DEFAULT '0',
session_id varchar(32) NOT NULL DEFAULT '',
search_key varchar(32) NOT NULL DEFAULT '',
search_time int(11) NOT NULL DEFAULT '0',
search_array mediumtext(16777215) NOT NULL
search_keywords mediumtext(16777215) NOT NULL,
search_authors mediumtext(16777215) NOT NULL,
PRIMARY KEY (search_key)
);
CREATE INDEX session_id_phpbb_search_result on phpbb_search_results (session_id);
# Table: phpbb_search_wordlist
CREATE TABLE phpbb_search_wordlist (
word_text varchar(50) NOT NULL DEFAULT '',