mirror of
https://github.com/friendica/friendica
synced 2025-04-22 16:30:11 +00:00
Hook calls can now be forked into a worker queue entry
This commit is contained in:
parent
66e3c1836e
commit
47d165cb25
9 changed files with 47 additions and 68 deletions
|
@ -1771,7 +1771,7 @@ class DBStructure
|
|||
"comment" => "Background tasks queue entries",
|
||||
"fields" => [
|
||||
"id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented worker task id"],
|
||||
"parameter" => ["type" => "text", "comment" => "Task command"],
|
||||
"parameter" => ["type" => "mediumtext", "comment" => "Task command"],
|
||||
"priority" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Task priority"],
|
||||
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => "Creation date"],
|
||||
"pid" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => "Process id of the worker"],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue