]> git.mxchange.org Git - friendica.git/commitdiff
Remove unused table documentation
authorHypolite Petovan <mrpetovan@gmail.com>
Wed, 6 Dec 2017 23:27:55 +0000 (18:27 -0500)
committerHypolite Petovan <mrpetovan@gmail.com>
Wed, 6 Dec 2017 23:27:55 +0000 (18:27 -0500)
doc/database.md
doc/database/db_item_id.md [deleted file]
doc/database/db_spam.md [deleted file]

index 27ff886abe6e70665dc10ac48d9b83c94639e709..649ba3984fd5c1764c6c1e592789dcd4e23943ce 100644 (file)
@@ -29,7 +29,6 @@ Database Tables
 | [hook](help/database/db_hook)                        | plugin hook registry                             |
 | [intro](help/database/db_intro)                      |                                                  |
 | [item](help/database/db_item)                        | all posts                                        |
-| [item_id](help/database/db_item_id)                  | other identifiers on other services for posts    |
 | [locks](help/database/db_locks)                      |                                                  |
 | [mail](help/database/db_mail)                        | private messages                                 |
 | [mailacct](help/database/db_mailacct)                |                                                  |
@@ -50,7 +49,6 @@ Database Tables
 | [search](help/database/db_search)                    |                                                  |
 | [session](help/database/db_session)                  | web session storage                              |
 | [sign](help/database/db_sign)                        | Diaspora signatures                              |
-| [spam](help/database/db_spam)                        | unfinished                                       |
 | [term](help/database/db_term)                        | item taxonomy (categories, tags, etc.) table     |
 | [thread](help/database/db_thread)                    |                                                  |
 | [tokens](help/database/db_tokens)                    | OAuth usage                                      |
diff --git a/doc/database/db_item_id.md b/doc/database/db_item_id.md
deleted file mode 100644 (file)
index c578617..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-Table item_id
-=============
-
-| Field   | Description                                                                                                                                               | Type         | Null | Key | Default | Extra           |
-| ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ---- | --- | ------- | --------------- |
-| id      | sequential ID                                                                                                                                             | int(11)      | NO   | PRI | NULL    | auto_increment  |
-| iid     | item.id of the referenced item                                                                                                                            | int(11)      | NO   | MUL | 0       |                 |
-| uid     | user.id of the owner of this data                                                                                                                         | int(11)      | NO   | MUL | 0       |                 |
-| sid     | an additional identifier to attach or link to the referenced item (often used to store a message_id from another system in order to suppress duplicates)  | varchar(255) | NO   | MUL |         |                 |
-| service | the name or description of the service which generated this identifier                                                                                    | varchar(255) | NO   | MUL |         |                 |
-
-Return to [database documentation](help/database)
diff --git a/doc/database/db_spam.md b/doc/database/db_spam.md
deleted file mode 100644 (file)
index dc27e1b..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-Table spam
-==========
-
-| Field | Description | Type         | Null | Key | Default             | Extra           |
-| ----- | ----------- | ------------ | ---- | --- | ------------------- | --------------- |
-| id    |             | int(11)      | NO   | PRI | NULL                | auto_increment  |
-| uid   |             | int(11)      | NO   | MUL | 0                   |                 |
-| spam  |             | int(11)      | NO   | MUL | 0                   |                 |
-| ham   |             | int(11)      | NO   | MUL | 0                   |                 |
-| term  |             | varchar(255) | NO   | MUL |                     |                 |
-| date  |             | datetime     | NO   |     | 0001-01-01 00:00:00 |                 |
-
-Return to [database documentation](help/database)