]> git.mxchange.org Git - friendica.git/blob - doc/database/db_post-thread.md
Pad the lengths of the columns
[friendica.git] / doc / database / db_post-thread.md
1 Table post-thread
2 ===========
3 Thread related data
4
5 | Field | Description | Type | Null | Key | Default | Extra |
6 | ----- | ----------- | ---- | ---- | --- | ------- | ----- |
7 | uri-id    | Id of the item-uri table entry that contains the item uri                                               | int unsigned | NO  | PRI | NULL                |  |    
8 | owner-id  | Item owner                                                                                              | int unsigned | NO  |     | 0                   |  |    
9 | author-id | Item author                                                                                             | int unsigned | NO  |     | 0                   |  |    
10 | causer-id | Link to the contact table with uid=0 of the contact that caused the item creation                       | int unsigned | YES |     | NULL                |  |    
11 | network   |                                                                                                         | char(4)      | NO  |     |                     |  |    
12 | created   |                                                                                                         | datetime     | NO  |     | 0001-01-01 00:00:00 |  |    
13 | received  |                                                                                                         | datetime     | NO  |     | 0001-01-01 00:00:00 |  |    
14 | changed   | Date that something in the conversation changed, indicating clients should fetch the conversation again | datetime     | NO  |     | 0001-01-01 00:00:00 |  |    
15 | commented |                                                                                                         | datetime     | NO  |     | 0001-01-01 00:00:00 |  |    
16
17 Return to [database documentation](help/database)