]> git.mxchange.org Git - friendica.git/blob - doc/database/db_workerqueue.md
Updates database structure documentation
[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 | YES | PRI |  | auto_increment |    
8 | command | Task command | varchar(100) | NO |  |  |  |    
9 | parameter | Task parameter | mediumtext | NO |  |  |  |    
10 | priority | Task priority | tinyint unsigned | YES |  | 0 |  |    
11 | created | Creation date | datetime | YES |  | 0001-01-01 00:00:00 |  |    
12 | pid | Process id of the worker | int unsigned | YES |  | 0 |  |    
13 | executed | Execution date | datetime | YES |  | 0001-01-01 00:00:00 |  |    
14 | next_try | Next retrial date | datetime | YES |  | 0001-01-01 00:00:00 |  |    
15 | retrial | Retrial counter | tinyint | YES |  | 0 |  |    
16 | done | Marked 1 when the task was done - will be deleted later | boolean | YES |  | 0 |  |    
17
18 Return to [database documentation](help/database)