]> git.mxchange.org Git - friendica.git/blobdiff - doc/database/db_delayed-post.md
Merge pull request #11979 from annando/issue-11853
[friendica.git] / doc / database / db_delayed-post.md
index 77cd677f656a01f76ca8fb6cf004c2b20495f8e3..8ab3ff08e47cd7c16d69c5847f488d4afbbc1a09 100644 (file)
@@ -9,13 +9,10 @@ Fields
 | Field   | Description                                    | Type               | Null | Key | Default | Extra          |
 | ------- | ---------------------------------------------- | ------------------ | ---- | --- | ------- | -------------- |
 | id      |                                                | int unsigned       | NO   | PRI | NULL    | auto_increment |
-| uri     | URI of the post that will be distributed later | varchar(255)       | YES  |     | NULL    |                |
-| title   | post title                                     | varchar(255)       | YES  |     | NULL    |                |
-| body    | post body content                              | mediumtext         | YES  |     | NULL    |                |
-| private | 0=public, 1=private, 2=unlisted                | tinyint unsigned   | YES  |     | NULL    |                |
-| wid     | Workerqueue id                                 | int unsigned       | YES  |     | NULL    |                |
+| uri     | URI of the post that will be distributed later | varbinary(383)     | YES  |     | NULL    |                |
 | uid     | Owner User id                                  | mediumint unsigned | YES  |     | NULL    |                |
 | delayed | delay time                                     | datetime           | YES  |     | NULL    |                |
+| wid     | Workerqueue id                                 | int unsigned       | YES  |     | NULL    |                |
 
 Indexes
 ------------
@@ -31,7 +28,7 @@ Foreign Keys
 
 | Field | Target Table | Target Field |
 |-------|--------------|--------------|
-| wid | [workerqueue](help/database/db_workerqueue) | id |
 | uid | [user](help/database/db_user) | uid |
+| wid | [workerqueue](help/database/db_workerqueue) | id |
 
 Return to [database documentation](help/database)