Added documentation
This commit is contained in:
parent
0e4cd900d5
commit
fa14096ea8
|
@ -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 |
|
||||
|
|
14
doc/database/db_conversation.md
Normal file
14
doc/database/db_conversation.md
Normal 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)
|
Loading…
Reference in a new issue