]> git.mxchange.org Git - friendica.git/blob - doc/database/db_workerqueue.md
Pad the header
[friendica.git] / doc / database / db_workerqueue.md
1 Table workerqueue
2 ===========
3 Background tasks queue entries
4
5 | Field     | Description                                             | Type             | Null | Key | Default             | Extra          |    
6 | --------- | ------------------------------------------------------- | ---------------- | ---- | --- | ------------------- | -------------- |    
7 | id        | Auto incremented worker task id                         | int unsigned     | NO   | PRI | NULL                | auto_increment |    
8 | command   | Task command                                            | varchar(100)     | YES  |     | NULL                |                |    
9 | parameter | Task parameter                                          | mediumtext       | YES  |     | NULL                |                |    
10 | priority  | Task priority                                           | tinyint unsigned | NO   |     | 0                   |                |    
11 | created   | Creation date                                           | datetime         | NO   |     | 0001-01-01 00:00:00 |                |    
12 | pid       | Process id of the worker                                | int unsigned     | NO   |     | 0                   |                |    
13 | executed  | Execution date                                          | datetime         | NO   |     | 0001-01-01 00:00:00 |                |    
14 | next_try  | Next retrial date                                       | datetime         | NO   |     | 0001-01-01 00:00:00 |                |    
15 | retrial   | Retrial counter                                         | tinyint          | NO   |     | 0                   |                |    
16 | done      | Marked 1 when the task was done - will be deleted later | boolean          | NO   |     | 0                   |                |    
17
18 Return to [database documentation](help/database)