Table documentation added

This commit is contained in:
Michael Vogel 2016-01-11 20:17:31 +01:00
parent 01c2eacd46
commit 012107f5f7
3 changed files with 32 additions and 25 deletions

View File

@ -18,9 +18,14 @@ Table gcontact
| about | | text | NO | | NULL | | | about | | text | NO | | NULL | |
| keywords | puplic keywords (interests) | text | NO | | NULL | | | keywords | puplic keywords (interests) | text | NO | | NULL | |
| gender | | varchar(32) | NO | | | | | gender | | varchar(32) | NO | | | |
| birthday | | varchar(32) | NO | | 0000-00-00 | |
| community | 1 if contact is forum account | tinyint(1) | NO | | 0 | | | community | 1 if contact is forum account | tinyint(1) | NO | | 0 | |
| hide | 1 = should be hidden from search | tinyint(1) | NO | | 0 | |
| nsfw | 1 = contact posts nsfw content | tinyint(1) | NO | | 0 | |
| network | social network protocol | varchar(255) | NO | | | | | network | social network protocol | varchar(255) | NO | | | |
| addr | | varchar(255) | NO | | | | | addr | | varchar(255) | NO | | | |
| notify | | text | NO | | | |
| alias | | varchar(255) | NO | | | |
| generation | | tinyint(3) | NO | | 0 | | | generation | | tinyint(3) | NO | | 0 | |
| server_url | baseurl of the contacts server | varchar(255) | NO | | | | | server_url | baseurl of the contacts server | varchar(255) | NO | | | |

View File

@ -8,6 +8,7 @@ Table item
| uri | | varchar(255) | NO | MUL | | | | uri | | varchar(255) | NO | MUL | | |
| uid | user.id which owns this copy of the item | int(10) unsigned | NO | MUL | 0 | | | uid | user.id which owns this copy of the item | int(10) unsigned | NO | MUL | 0 | |
| contact-id | contact.id | int(11) | NO | MUL | 0 | | | contact-id | contact.id | int(11) | NO | MUL | 0 | |
| gcontact-id | ID of the global contact | int(11) | NO | MUL | 0 | |
| type | | varchar(255) | NO | | | | | type | | varchar(255) | NO | | | |
| wall | This item was posted to the wall of uid | tinyint(1) | NO | MUL | 0 | | | wall | This item was posted to the wall of uid | tinyint(1) | NO | MUL | 0 | |
| gravity | | tinyint(1) | NO | | 0 | | | gravity | | tinyint(1) | NO | | 0 | |

View File

@ -1,30 +1,31 @@
Table thread Table thread
============ ============
| Field | Description | Type | Null | Key | Default | Extra | | Field | Description | Type | Null | Key | Default | Extra |
|------------|------------------|------------------|------|-----|---------------------|-------| |-------------|------------------|------------------|------|-----|---------------------|-------|
| iid | sequential ID | int(10) unsigned | NO | PRI | 0 | | | iid | sequential ID | int(10) unsigned | NO | PRI | 0 | |
| uid | | int(10) unsigned | NO | MUL | 0 | | | uid | | int(10) unsigned | NO | MUL | 0 | |
| contact-id | | int(11) unsigned | NO | | 0 | | | contact-id | | int(11) unsigned | NO | | 0 | |
| created | | datetime | NO | MUL | 0000-00-00 00:00:00 | | | gcontact-id | Global Contact | int(11) unsigned | NO | | 0 | |
| edited | | datetime | NO | | 0000-00-00 00:00:00 | | | created | | datetime | NO | MUL | 0000-00-00 00:00:00 | |
| commented | | datetime | NO | MUL | 0000-00-00 00:00:00 | | | edited | | datetime | NO | | 0000-00-00 00:00:00 | |
| received | | datetime | NO | | 0000-00-00 00:00:00 | | | commented | | datetime | NO | MUL | 0000-00-00 00:00:00 | |
| changed | | datetime | NO | | 0000-00-00 00:00:00 | | | received | | datetime | NO | | 0000-00-00 00:00:00 | |
| wall | | tinyint(1) | NO | MUL | 0 | | | changed | | datetime | NO | | 0000-00-00 00:00:00 | |
| private | | tinyint(1) | NO | | 0 | | | wall | | tinyint(1) | NO | MUL | 0 | |
| pubmail | | tinyint(1) | NO | | 0 | | | private | | tinyint(1) | NO | | 0 | |
| moderated | | tinyint(1) | NO | | 0 | | | pubmail | | tinyint(1) | NO | | 0 | |
| visible | | tinyint(1) | NO | | 0 | | | moderated | | tinyint(1) | NO | | 0 | |
| spam | | tinyint(1) | NO | | 0 | | | visible | | tinyint(1) | NO | | 0 | |
| starred | | tinyint(1) | NO | | 0 | | | spam | | tinyint(1) | NO | | 0 | |
| ignored | | tinyint(1) | NO | | 0 | | | starred | | tinyint(1) | NO | | 0 | |
| bookmark | | tinyint(1) | NO | | 0 | | | ignored | | tinyint(1) | NO | | 0 | |
| unseen | | tinyint(1) | NO | | 1 | | | bookmark | | tinyint(1) | NO | | 0 | |
| deleted | | tinyint(1) | NO | | 0 | | | unseen | | tinyint(1) | NO | | 1 | |
| origin | | tinyint(1) | NO | | 0 | | | deleted | | tinyint(1) | NO | | 0 | |
| forum_mode | | tinyint(1) | NO | | 0 | | | origin | | tinyint(1) | NO | | 0 | |
| mention | | tinyint(1) | NO | | 0 | | | forum_mode | | tinyint(1) | NO | | 0 | |
| network | | varchar(32) | NO | | | | | mention | | tinyint(1) | NO | | 0 | |
| network | | varchar(32) | NO | | | |
Return to [database documentation](help/database) Return to [database documentation](help/database)