]> git.mxchange.org Git - friendica.git/blobdiff - doc/database/db_conv.md
Updates database structure documentation
[friendica.git] / doc / database / db_conv.md
index f20074d61ddb454b1e0c75a5a0148ee3daa723b4..bcea6012d6f3dcfe30e858b2a68fe9d5c55e7c2e 100644 (file)
@@ -1,15 +1,16 @@
 Table conv
-==========
+===========
+private messages
 
-| Field   | Description                               | Type             | Null | Key | Default             | Extra           |
-| ------- | ----------------------------------------- | ---------------- | ---- | --- | ------------------- | --------------- |
-| id      | sequential ID                             | int(10) unsigned | NO   | PRI | NULL                | auto_increment  |
-| guid    | A unique identifier for this conversation | varchar(64)      | NO   |     |                     |                 |
-| recips  | sender_handle;recipient_handle            | mediumtext       | NO   |     | NULL                |                 |
-| uid     | user_id of the owner of this data         | int(11)          | NO   | MUL | 0                   |                 |
-| creator | handle of creator                         | varchar(255)     | NO   |     |                     |                 |
-| created | creation timestamp                        | datetime         | NO   |     | 0000-00-00 00:00:00 |                 |
-| updated | edited timestamp                          | datetime         | NO   |     | 0000-00-00 00:00:00 |                 |
-| subject | subject of initial message                | mediumtext       | NO   |     | NULL                |                 |
+| Field | Description | Type | Null | Key | Default | Extra |
+| ----- | ----------- | ---- | ---- | --- | ------- | ----- |
+| id | sequential ID | int unsigned | YES | PRI |  | auto_increment |    
+| guid | A unique identifier for this conversation | varchar(255) | YES |  |  |  |    
+| recips | sender_handle;recipient_handle | text | NO |  |  |  |    
+| uid | Owner User id | mediumint unsigned | YES |  | 0 |  |    
+| creator | handle of creator | varchar(255) | YES |  |  |  |    
+| created | creation timestamp | datetime | YES |  | 0001-01-01 00:00:00 |  |    
+| updated | edited timestamp | datetime | YES |  | 0001-01-01 00:00:00 |  |    
+| subject | subject of initial message | text | NO |  |  |  |    
 
 Return to [database documentation](help/database)