]> git.mxchange.org Git - friendica.git/blobdiff - doc/database/db_conv.md
Pad the header
[friendica.git] / doc / database / db_conv.md
index f70191b88e5e1df42c8d1e62c58ddd467e5f2172..8cf835b7e3866689728f08340d132fcf8cbb59c7 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   |     | 0001-01-01 00:00:00 |                 |
-| updated | edited timestamp                          | datetime         | NO   |     | 0001-01-01 00:00:00 |                 |
-| subject | subject of initial message                | mediumtext       | NO   |     | NULL                |                 |
+| Field   | Description                               | Type               | Null | Key | Default             | Extra          |    
+| ------- | ----------------------------------------- | ------------------ | ---- | --- | ------------------- | -------------- |    
+| id      | sequential ID                             | int unsigned       | NO   | PRI | NULL                | auto_increment |    
+| guid    | A unique identifier for this conversation | varchar(255)       | NO   |     |                     |                |    
+| recips  | sender_handle;recipient_handle            | text               | YES  |     | NULL                |                |    
+| uid     | Owner User id                             | mediumint unsigned | NO   |     | 0                   |                |    
+| creator | handle of creator                         | varchar(255)       | NO   |     |                     |                |    
+| created | creation timestamp                        | datetime           | NO   |     | 0001-01-01 00:00:00 |                |    
+| updated | edited timestamp                          | datetime           | NO   |     | 0001-01-01 00:00:00 |                |    
+| subject | subject of initial message                | text               | YES  |     | NULL                |                |    
 
 Return to [database documentation](help/database)