]> git.mxchange.org Git - friendica.git/blob - doc/database/db_conv.md
Trailing whitespace removed
[friendica.git] / doc / database / db_conv.md
1 Table conv
2 ===========
3
4 private messages
5
6 | Field   | Description                               | Type               | Null | Key | Default             | Extra          |
7 | ------- | ----------------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- |
8 | id      | sequential ID                             | int unsigned       | NO   | PRI | NULL                | auto_increment |
9 | guid    | A unique identifier for this conversation | varchar(255)       | NO   |     |                     |                |
10 | recips  | sender_handle;recipient_handle            | text               | YES  |     | NULL                |                |
11 | uid     | Owner User id                             | mediumint unsigned | NO   |     | 0                   |                |
12 | creator | handle of creator                         | varchar(255)       | NO   |     |                     |                |
13 | created | creation timestamp                        | datetime           | NO   |     | 0001-01-01 00:00:00 |                |
14 | updated | edited timestamp                          | datetime           | NO   |     | 0001-01-01 00:00:00 |                |
15 | subject | subject of initial message                | text               | YES  |     | NULL                |                |
16
17 Return to [database documentation](help/database)