]> git.mxchange.org Git - friendica.git/blob - doc/database/db_inbox-status.md
Merge remote-tracking branch 'upstream/2022.05-rc' into performance
[friendica.git] / doc / database / db_inbox-status.md
1 Table inbox-status
2 ===========
3
4 Status of ActivityPub inboxes
5
6 Fields
7 ------
8
9 | Field    | Description                          | Type           | Null | Key | Default             | Extra |
10 | -------- | ------------------------------------ | -------------- | ---- | --- | ------------------- | ----- |
11 | url      | URL of the inbox                     | varbinary(255) | NO   | PRI | NULL                |       |
12 | uri-id   | Item-uri id of inbox url             | int unsigned   | YES  |     | NULL                |       |
13 | created  | Creation date of this entry          | datetime       | NO   |     | 0001-01-01 00:00:00 |       |
14 | success  | Date of the last successful delivery | datetime       | NO   |     | 0001-01-01 00:00:00 |       |
15 | failure  | Date of the last failed delivery     | datetime       | NO   |     | 0001-01-01 00:00:00 |       |
16 | previous | Previous delivery date               | datetime       | NO   |     | 0001-01-01 00:00:00 |       |
17 | archive  | Is the inbox archived?               | boolean        | NO   |     | 0                   |       |
18 | shared   | Is it a shared inbox?                | boolean        | NO   |     | 0                   |       |
19
20 Indexes
21 ------------
22
23 | Name    | Fields |
24 | ------- | ------ |
25 | PRIMARY | url    |
26 | uri-id  | uri-id |
27
28 Foreign Keys
29 ------------
30
31 | Field | Target Table | Target Field |
32 |-------|--------------|--------------|
33 | uri-id | [item-uri](help/database/db_item-uri) | id |
34
35 Return to [database documentation](help/database)