Added documentation

This commit is contained in:
Michael 2017-04-29 08:11:54 +00:00
parent 0e4cd900d5
commit fa14096ea8
2 changed files with 15 additions and 0 deletions

View File

@ -14,6 +14,7 @@ Database Tables
| [config](help/database/db_config) | main configuration storage |
| [contact](help/database/db_contact) | contact table |
| [conv](help/database/db_conv) | private messages |
| [conversation](help/database/db_conversation) | Raw data and structure information for messages |
| [event](help/database/db_event) | Events |
| [fcontact](help/database/db_fcontact) | friend suggestion stuff |
| [ffinder](help/database/db_ffinder) | friend suggestion stuff |

View File

@ -0,0 +1,14 @@
Table conversation
==================
| Field | Description | Type | Null | Key | Default | Extra |
|-------------------| ------------- |---------------------|------|-----|---------------------|----------------|
| item-uri | | varbinary(255) | NO | PRI | NULL | |
| reply-to-uri | | varbinary(255) | NO | | | |
| conversation-uri | | varbinary(255) | NO | | | |
| conversation-href | | varbinary(255) | NO | | | |
| protocol | | tinyint(1) unsigned | NO | | 0 | |
| source | | mediumtext | NO | | | |
| received | | datetime | NO | | 0001-01-01 | |
Return to [database documentation](help/database)