mirror of
https://github.com/friendica/friendica
synced 2025-04-26 05:50:11 +00:00
Updates database structure documentation
This commit is contained in:
parent
cd8ce7eada
commit
84ab5d6159
83 changed files with 1289 additions and 796 deletions
15
doc/database/db_inbox-status.md
Normal file
15
doc/database/db_inbox-status.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
Table inbox-status
|
||||
===========
|
||||
Status of ActivityPub inboxes
|
||||
|
||||
| Field | Description | Type | Null | Key | Default | Extra |
|
||||
| ----- | ----------- | ---- | ---- | --- | ------- | ----- |
|
||||
| url | URL of the inbox | varbinary(255) | YES | PRI | | |
|
||||
| created | Creation date of this entry | datetime | YES | | 0001-01-01 00:00:00 | |
|
||||
| success | Date of the last successful delivery | datetime | YES | | 0001-01-01 00:00:00 | |
|
||||
| failure | Date of the last failed delivery | datetime | YES | | 0001-01-01 00:00:00 | |
|
||||
| previous | Previous delivery date | datetime | YES | | 0001-01-01 00:00:00 | |
|
||||
| archive | Is the inbox archived? | boolean | YES | | 0 | |
|
||||
| shared | Is it a shared inbox? | boolean | YES | | 0 | |
|
||||
|
||||
Return to [database documentation](help/database)
|
Loading…
Add table
Add a link
Reference in a new issue