]> git.mxchange.org Git - friendica.git/blob - doc/database/db_delayed-post.md
Category added
[friendica.git] / doc / database / db_delayed-post.md
1 Table delayed-post
2 ===========
3
4 Posts that are about to be distributed at a later time
5
6 Fields
7 ------
8
9 | Field   | Description                                    | Type               | Null | Key | Default | Extra          |
10 | ------- | ---------------------------------------------- | ------------------ | ---- | --- | ------- | -------------- |
11 | id      |                                                | int unsigned       | NO   | PRI | NULL    | auto_increment |
12 | uri     | URI of the post that will be distributed later | varbinary(383)     | YES  |     | NULL    |                |
13 | uid     | Owner User id                                  | mediumint unsigned | YES  |     | NULL    |                |
14 | delayed | delay time                                     | datetime           | YES  |     | NULL    |                |
15 | wid     | Workerqueue id                                 | int unsigned       | YES  |     | NULL    |                |
16
17 Indexes
18 ------------
19
20 | Name    | Fields                |
21 | ------- | --------------------- |
22 | PRIMARY | id                    |
23 | uid_uri | UNIQUE, uid, uri(190) |
24 | wid     | wid                   |
25
26 Foreign Keys
27 ------------
28
29 | Field | Target Table | Target Field |
30 |-------|--------------|--------------|
31 | uid | [user](help/database/db_user) | uid |
32 | wid | [workerqueue](help/database/db_workerqueue) | id |
33
34 Return to [database documentation](help/database)