]> git.mxchange.org Git - friendica.git/blob - doc/database/db_fetch-entry.md
Merge remote-tracking branch 'upstream/develop' into api-edit
[friendica.git] / doc / database / db_fetch-entry.md
1 Table fetch-entry
2 ===========
3
4
5
6 Fields
7 ------
8
9 | Field   | Description                        | Type           | Null | Key | Default             | Extra          |
10 | ------- | ---------------------------------- | -------------- | ---- | --- | ------------------- | -------------- |
11 | id      | sequential ID                      | int unsigned   | NO   | PRI | NULL                | auto_increment |
12 | url     | url that awaiting to be fetched    | varbinary(383) | YES  |     | NULL                |                |
13 | created | Creation date of the fetch request | datetime       | NO   |     | 0001-01-01 00:00:00 |                |
14 | wid     | Workerqueue id                     | int unsigned   | YES  |     | NULL                |                |
15
16 Indexes
17 ------------
18
19 | Name    | Fields      |
20 | ------- | ----------- |
21 | PRIMARY | id          |
22 | url     | UNIQUE, url |
23 | created | created     |
24 | wid     | wid         |
25
26 Foreign Keys
27 ------------
28
29 | Field | Target Table | Target Field |
30 |-------|--------------|--------------|
31 | wid | [workerqueue](help/database/db_workerqueue) | id |
32
33 Return to [database documentation](help/database)