]> git.mxchange.org Git - friendica.git/commitdiff
Database Structure version 1305
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 23 Mar 2019 23:18:15 +0000 (19:18 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 23 Mar 2019 23:18:15 +0000 (19:18 -0400)
- Add term_type index to term table

config/dbstructure.config.php
database.sql

index f03132addaf066596762d51dad9c3bbc41efd8a4..7488787a6a7ca6b0dcfc23dfcff5ec43e8e0a63e 100644 (file)
@@ -34,7 +34,7 @@
 use Friendica\Database\DBA;
 
 if (!defined('DB_UPDATE_VERSION')) {
-       define('DB_UPDATE_VERSION', 1304);
+       define('DB_UPDATE_VERSION', 1305);
 }
 
 return [
@@ -1195,6 +1195,7 @@ return [
                ],
                "indexes" => [
                        "PRIMARY" => ["tid"],
+                       "term_type" => ["term", "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)"],
index 10a428ffff9a9ac0fcad4fde766942c00b4e9bc4..0e7e5a3437042fb409eb5e6799c2db0b8fa4d0da 100644 (file)
@@ -1099,6 +1099,7 @@ CREATE TABLE IF NOT EXISTS `term` (
        `global` boolean NOT NULL DEFAULT '0' COMMENT '',
        `uid` mediumint unsigned NOT NULL DEFAULT 0 COMMENT 'User id',
         PRIMARY KEY(`tid`),
+        INDEX `term_type` (`term`, `type`),
         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_url` (`uid`,`otype`,`type`,`url`(64)),