From 57020d406fecc4c4570c579a2b7ca48714908689 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 15 Nov 2023 17:57:40 +0000 Subject: [PATCH 1/2] Renamed file --- doc/database/db_check-full-text-search.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 doc/database/db_check-full-text-search.md diff --git a/doc/database/db_check-full-text-search.md b/doc/database/db_check-full-text-search.md new file mode 100644 index 0000000000..dc21d14924 --- /dev/null +++ b/doc/database/db_check-full-text-search.md @@ -0,0 +1,23 @@ +Table check-full-text-search +=========== + +Check for a full text search match in user defined channels before storing the message in the system + +Fields +------ + +| Field | Description | Type | Null | Key | Default | Extra | +| ---------- | ---------------------------------------- | ------------ | ---- | --- | ------- | ----- | +| pid | The ID of the process | int unsigned | NO | PRI | NULL | | +| searchtext | Simplified text for the full text search | mediumtext | YES | | NULL | | + +Indexes +------------ + +| Name | Fields | +| ---------- | -------------------- | +| PRIMARY | pid | +| searchtext | FULLTEXT, searchtext | + + +Return to [database documentation](help/database) From 500feedc43963a9d09fe571f982a362751a17557 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 15 Nov 2023 18:02:44 +0000 Subject: [PATCH 2/2] Removed old database table description --- doc/database/db_test-full-text-search.md | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 doc/database/db_test-full-text-search.md diff --git a/doc/database/db_test-full-text-search.md b/doc/database/db_test-full-text-search.md deleted file mode 100644 index e9bdbec353..0000000000 --- a/doc/database/db_test-full-text-search.md +++ /dev/null @@ -1,23 +0,0 @@ -Table check-full-text-search -=========== - -Check for a full text search match in user defined channels before storing the message in the system - -Fields ------- - -| Field | Description | Type | Null | Key | Default | Extra | -| ---------- | ---------------------------------------- | ------------ | ---- | --- | ------- | ----- | -| pid | Process id of the worker | int unsigned | NO | | 0 | | -| searchtext | Simplified text for the full text search | mediumtext | YES | | NULL | | - -Indexes ------------- - -| Name | Fields | -| ---------- | -------------------- | -| PRIMARY | pid | -| searchtext | FULLTEXT, searchtext | - - -Return to [database documentation](help/database)