diff options
author | wagnerch <wagnerch@code.phpbb.com> | 2007-07-22 22:23:00 +0000 |
---|---|---|
committer | Dhruv Goel <dhruv.goel92@gmail.com> | 2012-06-08 21:28:23 +0530 |
commit | 0191e1313ca8179bb09a2fc6f3d06de95768bc96 (patch) | |
tree | dc6a76ffadc9fd32bd469eac54c1549a997480a2 /phpBB/install/schemas/fulltext_postgres.sql | |
parent | 1d0607cbb31865b5128a1a2b92b415386aee0788 (diff) | |
download | forums-0191e1313ca8179bb09a2fc6f3d06de95768bc96.tar forums-0191e1313ca8179bb09a2fc6f3d06de95768bc96.tar.gz forums-0191e1313ca8179bb09a2fc6f3d06de95768bc96.tar.bz2 forums-0191e1313ca8179bb09a2fc6f3d06de95768bc96.tar.xz forums-0191e1313ca8179bb09a2fc6f3d06de95768bc96.zip |
[feature/postgresql-fulltext-search] PostgreSQL fulltext search, version 1.
PHPBB3-9730
Diffstat (limited to 'phpBB/install/schemas/fulltext_postgres.sql')
-rw-r--r-- | phpBB/install/schemas/fulltext_postgres.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/install/schemas/fulltext_postgres.sql b/phpBB/install/schemas/fulltext_postgres.sql new file mode 100644 index 0000000000..0be6648d0c --- /dev/null +++ b/phpBB/install/schemas/fulltext_postgres.sql @@ -0,0 +1,3 @@ +INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_postgres_max_word_len', '254'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_postgres_min_word_len', '4'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_postgres_ts_name', 'default'); |