mirror of
https://github.com/friendica/friendica
synced 2025-04-19 10:30:10 +00:00
We now incrementally calculate the queue delivery time
This commit is contained in:
parent
06bce464ba
commit
d70a20a466
5 changed files with 32 additions and 36 deletions
|
@ -1553,17 +1553,16 @@ class DBStructure
|
|||
"network" => ["type" => "varchar(32)", "not null" => "1", "default" => "", "comment" => "Receiver's network"],
|
||||
"guid" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Unique GUID of the message"],
|
||||
"created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => "Date, when the message was created"],
|
||||
"last" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => ""],
|
||||
"last" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => "Date of last trial"],
|
||||
"next" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => "Next retrial date"],
|
||||
"retrial" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Retrial counter"],
|
||||
"content" => ["type" => "mediumtext", "comment" => ""],
|
||||
"batch" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
|
||||
],
|
||||
"indexes" => [
|
||||
"PRIMARY" => ["id"],
|
||||
"cid" => ["cid"],
|
||||
"created" => ["created"],
|
||||
"last" => ["last"],
|
||||
"network" => ["network"],
|
||||
"batch" => ["batch"],
|
||||
"next" => ["next"],
|
||||
]
|
||||
];
|
||||
$database["register"] = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue