mirror of
https://github.com/friendica/friendica
synced 2025-04-26 05:10:11 +00:00
Code standards and updated database documentation
This commit is contained in:
parent
81b244f91e
commit
c8d1bf4cdf
4 changed files with 50 additions and 2 deletions
33
doc/database/db_fetch-entry.md
Normal file
33
doc/database/db_fetch-entry.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
Table fetch-entry
|
||||
===========
|
||||
|
||||
|
||||
|
||||
Fields
|
||||
------
|
||||
|
||||
| Field | Description | Type | Null | Key | Default | Extra |
|
||||
| ------- | ---------------------------------- | -------------- | ---- | --- | ------------------- | -------------- |
|
||||
| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment |
|
||||
| url | url that awaiting to be fetched | varbinary(255) | YES | | NULL | |
|
||||
| created | Creation date of the fetch request | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||
| wid | Workerqueue id | int unsigned | YES | | NULL | |
|
||||
|
||||
Indexes
|
||||
------------
|
||||
|
||||
| Name | Fields |
|
||||
| ------- | ----------- |
|
||||
| PRIMARY | id |
|
||||
| url | UNIQUE, url |
|
||||
| created | created |
|
||||
| wid | wid |
|
||||
|
||||
Foreign Keys
|
||||
------------
|
||||
|
||||
| Field | Target Table | Target Field |
|
||||
|-------|--------------|--------------|
|
||||
| wid | [workerqueue](help/database/db_workerqueue) | id |
|
||||
|
||||
Return to [database documentation](help/database)
|
Loading…
Add table
Add a link
Reference in a new issue