mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-07 11:54:31 +02:00
Merge remote-tracking branch 'upstream/develop' into ap-delivery-failure
This commit is contained in:
commit
55325f191b
122 changed files with 5068 additions and 2006 deletions
3
config/dbstructure.config.php
Normal file → Executable file
3
config/dbstructure.config.php
Normal file → Executable file
|
@ -34,7 +34,7 @@
|
|||
use Friendica\Database\DBA;
|
||||
|
||||
if (!defined('DB_UPDATE_VERSION')) {
|
||||
define('DB_UPDATE_VERSION', 1305);
|
||||
define('DB_UPDATE_VERSION', 1308);
|
||||
}
|
||||
|
||||
return [
|
||||
|
@ -1210,6 +1210,7 @@ return [
|
|||
],
|
||||
"indexes" => [
|
||||
"PRIMARY" => ["tid"],
|
||||
"term_type" => ["term(64)", "type"],
|
||||
"oid_otype_type_term" => ["oid", "otype", "type", "term(32)"],
|
||||
"uid_otype_type_term_global_created" => ["uid", "otype", "type", "term(32)", "global", "created"],
|
||||
"uid_otype_type_url" => ["uid", "otype", "type", "url(64)"],
|
||||
|
|
|
@ -214,6 +214,10 @@ return [
|
|||
// If activated, all hashtags will point to the local server.
|
||||
'local_tags' => false,
|
||||
|
||||
// logger_config (String)
|
||||
// Sets the logging adapter of Friendica globally (monolog, syslog, stream)
|
||||
'logger_config' => 'stream',
|
||||
|
||||
// max_batch_queue (Integer)
|
||||
// Maximum number of batched queue items for a single contact before subsequent messages are discarded.
|
||||
'max_batch_queue' => 1000,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue