diff --git a/doc/database.md b/doc/database.md index 4c61505202..27ff886abe 100644 --- a/doc/database.md +++ b/doc/database.md @@ -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 | diff --git a/doc/database/db_conversation.md b/doc/database/db_conversation.md new file mode 100644 index 0000000000..8b923ec041 --- /dev/null +++ b/doc/database/db_conversation.md @@ -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)