]> git.mxchange.org Git - friendica.git/blob - doc/database/db_inbox-status.md
Trailing whitespace removed
[friendica.git] / doc / database / db_inbox-status.md
1 Table inbox-status
2 ===========
3
4 Status of ActivityPub inboxes
5
6 | Field    | Description                          | Type           | Null | Key | Default             | Extra |
7 | -------- | ------------------------------------ | -------------- | ---- | --- | ------------------- | ----- |
8 | url      | URL of the inbox                     | varbinary(255) | NO   | PRI | NULL                |       |
9 | created  | Creation date of this entry          | datetime       | NO   |     | 0001-01-01 00:00:00 |       |
10 | success  | Date of the last successful delivery | datetime       | NO   |     | 0001-01-01 00:00:00 |       |
11 | failure  | Date of the last failed delivery     | datetime       | NO   |     | 0001-01-01 00:00:00 |       |
12 | previous | Previous delivery date               | datetime       | NO   |     | 0001-01-01 00:00:00 |       |
13 | archive  | Is the inbox archived?               | boolean        | NO   |     | 0                   |       |
14 | shared   | Is it a shared inbox?                | boolean        | NO   |     | 0                   |       |
15
16 Return to [database documentation](help/database)