parent
76414a5169
commit
b8ec0e5e34
|
@ -34,7 +34,7 @@
|
||||||
use Friendica\Database\DBA;
|
use Friendica\Database\DBA;
|
||||||
|
|
||||||
if (!defined('DB_UPDATE_VERSION')) {
|
if (!defined('DB_UPDATE_VERSION')) {
|
||||||
define('DB_UPDATE_VERSION', 1305);
|
define('DB_UPDATE_VERSION', 1306);
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
@ -1195,7 +1195,7 @@ return [
|
||||||
],
|
],
|
||||||
"indexes" => [
|
"indexes" => [
|
||||||
"PRIMARY" => ["tid"],
|
"PRIMARY" => ["tid"],
|
||||||
"term_type" => ["term", "type"],
|
"term_type" => ["term(64)", "type"],
|
||||||
"oid_otype_type_term" => ["oid", "otype", "type", "term(32)"],
|
"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_term_global_created" => ["uid", "otype", "type", "term(32)", "global", "created"],
|
||||||
"uid_otype_type_url" => ["uid", "otype", "type", "url(64)"],
|
"uid_otype_type_url" => ["uid", "otype", "type", "url(64)"],
|
||||||
|
|
|
@ -1099,7 +1099,7 @@ CREATE TABLE IF NOT EXISTS `term` (
|
||||||
`global` boolean NOT NULL DEFAULT '0' COMMENT '',
|
`global` boolean NOT NULL DEFAULT '0' COMMENT '',
|
||||||
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
`uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
|
||||||
PRIMARY KEY(`tid`),
|
PRIMARY KEY(`tid`),
|
||||||
INDEX `term_type` (`term`, `type`),
|
INDEX `term_type` (`term`(64), `type`),
|
||||||
INDEX `oid_otype_type_term` (`oid`,`otype`,`type`,`term`(32)),
|
INDEX `oid_otype_type_term` (`oid`,`otype`,`type`,`term`(32)),
|
||||||
INDEX `uid_otype_type_term_global_created` (`uid`,`otype`,`type`,`term`(32),`global`,`created`),
|
INDEX `uid_otype_type_term_global_created` (`uid`,`otype`,`type`,`term`(32),`global`,`created`),
|
||||||
INDEX `uid_otype_type_url` (`uid`,`otype`,`type`,`url`(64)),
|
INDEX `uid_otype_type_url` (`uid`,`otype`,`type`,`url`(64)),
|
||||||
|
|
Loading…
Reference in New Issue