]> git.mxchange.org Git - friendica.git/commitdiff
Renamed file
authorMichael <heluecht@pirati.ca>
Wed, 15 Nov 2023 17:57:40 +0000 (17:57 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 15 Nov 2023 17:57:40 +0000 (17:57 +0000)
doc/database/db_check-full-text-search.md [new file with mode: 0644]

diff --git a/doc/database/db_check-full-text-search.md b/doc/database/db_check-full-text-search.md
new file mode 100644 (file)
index 0000000..dc21d14
--- /dev/null
@@ -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)