mirror of
https://github.com/friendica/friendica
synced 2025-04-25 16:30:10 +00:00
Reversed "null"
This commit is contained in:
parent
31db9dbef7
commit
a827f948c8
73 changed files with 752 additions and 752 deletions
|
@ -4,15 +4,15 @@ Background tasks queue entries
|
|||
|
||||
| Field | Description | Type | Null | Key | Default | Extra |
|
||||
| ----- | ----------- | ---- | ---- | --- | ------- | ----- |
|
||||
| id | Auto incremented worker task id | int unsigned | YES | PRI | NULL | auto_increment |
|
||||
| command | Task command | varchar(100) | NO | | NULL | |
|
||||
| parameter | Task parameter | mediumtext | NO | | NULL | |
|
||||
| priority | Task priority | tinyint unsigned | YES | | 0 | |
|
||||
| created | Creation date | datetime | YES | | 0001-01-01 00:00:00 | |
|
||||
| pid | Process id of the worker | int unsigned | YES | | 0 | |
|
||||
| executed | Execution date | datetime | YES | | 0001-01-01 00:00:00 | |
|
||||
| next_try | Next retrial date | datetime | YES | | 0001-01-01 00:00:00 | |
|
||||
| retrial | Retrial counter | tinyint | YES | | 0 | |
|
||||
| done | Marked 1 when the task was done - will be deleted later | boolean | YES | | 0 | |
|
||||
| id | Auto incremented worker task id | int unsigned | NO | PRI | NULL | auto_increment |
|
||||
| command | Task command | varchar(100) | YES | | NULL | |
|
||||
| parameter | Task parameter | mediumtext | YES | | NULL | |
|
||||
| priority | Task priority | tinyint unsigned | NO | | 0 | |
|
||||
| created | Creation date | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||
| pid | Process id of the worker | int unsigned | NO | | 0 | |
|
||||
| executed | Execution date | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||
| next_try | Next retrial date | datetime | NO | | 0001-01-01 00:00:00 | |
|
||||
| retrial | Retrial counter | tinyint | NO | | 0 | |
|
||||
| done | Marked 1 when the task was done - will be deleted later | boolean | NO | | 0 | |
|
||||
|
||||
Return to [database documentation](help/database)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue