diff options
author | Nils Adermann <naderman@naderman.de> | 2006-01-11 18:56:07 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2006-01-11 18:56:07 +0000 |
commit | 0e0b1120fba8ed4f2ebc5d62eb29b1a34c1b1007 (patch) | |
tree | 5cd57f820281c20c6936433d92483cc4712a7ab7 /phpBB/install/schemas/postgres_schema.sql | |
parent | 9ea5fa1768feebfb04f2303788eb4c685161e3dd (diff) | |
download | forums-0e0b1120fba8ed4f2ebc5d62eb29b1a34c1b1007.tar forums-0e0b1120fba8ed4f2ebc5d62eb29b1a34c1b1007.tar.gz forums-0e0b1120fba8ed4f2ebc5d62eb29b1a34c1b1007.tar.bz2 forums-0e0b1120fba8ed4f2ebc5d62eb29b1a34c1b1007.tar.xz forums-0e0b1120fba8ed4f2ebc5d62eb29b1a34c1b1007.zip |
- overhauled search system
- updated structure for search backend plugins
- better result caching using ACM
- search results no longer session restricted => link to them by copying the URL :)
- in-topic search
- indexing posts now uses search backend plugins
- develop/search_fill.php working again
- fulltext_mysql not working yet
- tiny bugfixes to ACM
git-svn-id: file:///svn/phpbb/trunk@5441 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas/postgres_schema.sql')
-rw-r--r-- | phpBB/install/schemas/postgres_schema.sql | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/phpBB/install/schemas/postgres_schema.sql b/phpBB/install/schemas/postgres_schema.sql index 98c335644f..e840387efe 100644 --- a/phpBB/install/schemas/postgres_schema.sql +++ b/phpBB/install/schemas/postgres_schema.sql @@ -775,16 +775,13 @@ SELECT SETVAL('phpbb_reports_report_id_seq',(select case when max(report_id)>0 t /* Table: phpbb_search_results */ CREATE TABLE phpbb_search_results ( - search_id INT4 DEFAULT '0' NOT NULL, - session_id varchar(32) DEFAULT '' NOT NULL, + search_key varchar(32) DEFAULT '' NOT NULL, search_time INT4 DEFAULT '0' NOT NULL, - search_array TEXT DEFAULT '' NOT NULL, - PRIMARY KEY (search_id), - CHECK (search_id>=0) + search_keywords TEXT DEFAULT '' NOT NULL, + search_authors TEXT DEFAULT '' NOT NULL, + PRIMARY KEY (search_key) ); -CREATE INDEX session_id_phpbb_search_results_index ON phpbb_search_results (session_id); - /* Table: phpbb_search_wordlist */ CREATE SEQUENCE phpbb_search_wordlist_word_i; |