mirror of
https://github.com/friendica/friendica
synced 2025-04-30 18:24:23 +02:00
Updates database structure documentation
This commit is contained in:
parent
cd8ce7eada
commit
84ab5d6159
83 changed files with 1289 additions and 796 deletions
17
doc/database/db_post-thread.md
Normal file
17
doc/database/db_post-thread.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
Table post-thread
|
||||
===========
|
||||
Thread related data
|
||||
|
||||
| Field | Description | Type | Null | Key | Default | Extra |
|
||||
| ----- | ----------- | ---- | ---- | --- | ------- | ----- |
|
||||
| uri-id | Id of the item-uri table entry that contains the item uri | int unsigned | YES | PRI | | |
|
||||
| owner-id | Item owner | int unsigned | YES | | 0 | |
|
||||
| author-id | Item author | int unsigned | YES | | 0 | |
|
||||
| causer-id | Link to the contact table with uid=0 of the contact that caused the item creation | int unsigned | NO | | | |
|
||||
| network | | char(4) | YES | | | |
|
||||
| created | | datetime | YES | | 0001-01-01 00:00:00 | |
|
||||
| received | | datetime | YES | | 0001-01-01 00:00:00 | |
|
||||
| changed | Date that something in the conversation changed, indicating clients should fetch the conversation again | datetime | YES | | 0001-01-01 00:00:00 | |
|
||||
| commented | | datetime | YES | | 0001-01-01 00:00:00 | |
|
||||
|
||||
Return to [database documentation](help/database)
|
Loading…
Add table
Add a link
Reference in a new issue