mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
Add expected FULLTEXT index to profile table
This commit is contained in:
parent
d53ff9c34d
commit
c15fd9beb8
1 changed files with 2 additions and 1 deletions
|
@ -34,7 +34,7 @@
|
|||
use Friendica\Database\DBA;
|
||||
|
||||
if (!defined('DB_UPDATE_VERSION')) {
|
||||
define('DB_UPDATE_VERSION', 1291);
|
||||
define('DB_UPDATE_VERSION', 1292);
|
||||
}
|
||||
|
||||
return [
|
||||
|
@ -1059,6 +1059,7 @@ return [
|
|||
"indexes" => [
|
||||
"PRIMARY" => ["id"],
|
||||
"uid_is-default" => ["uid", "is-default"],
|
||||
"pub_keywords" => ["FULLTEXT", "pub_keywords"],
|
||||
]
|
||||
],
|
||||
"profile_check" => [
|
||||
|
|
Loading…
Reference in a new issue