From fe93029914e9c52b3152bc12cdeeb08623ef05f7 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 6 Dec 2017 18:27:55 -0500 Subject: [PATCH] Remove unused table documentation --- doc/database.md | 2 -- doc/database/db_item_id.md | 12 ------------ doc/database/db_spam.md | 13 ------------- 3 files changed, 27 deletions(-) delete mode 100644 doc/database/db_item_id.md delete mode 100644 doc/database/db_spam.md diff --git a/doc/database.md b/doc/database.md index 27ff886abe..649ba3984f 100644 --- a/doc/database.md +++ b/doc/database.md @@ -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 index c578617000..0000000000 --- a/doc/database/db_item_id.md +++ /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 index dc27e1b471..0000000000 --- a/doc/database/db_spam.md +++ /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)