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