From 79f7f609b3bce65eab5b143d4b306328c1724ca5 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 23 Jun 2014 01:27:00 +0200 Subject: [PATCH] dbstructure: the indexes for longer table fields are now shortened --- include/dbstructure.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index 40762a9e94..45ba9b200d 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -354,7 +354,7 @@ function db_definition() { ), "indexes" => array( "PRIMARY" => array("id"), - "access" => array("cat","k"), + "access" => array("cat(30)","k(30)"), ) ); $database["contact"] = array( @@ -638,7 +638,7 @@ function db_definition() { ), "indexes" => array( "PRIMARY" => array("id"), - "hook_file_function" => array("hook","file","function"), + "hook_file_function" => array("hook(30)","file(60)","function(30)"), ) ); $database["intro"] = array( @@ -890,7 +890,7 @@ function db_definition() { ), "indexes" => array( "PRIMARY" => array("id"), - "access" => array("uid","cat","k"), + "access" => array("uid","cat(30)","k(30)"), ) ); $database["photo"] = array(