]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add index on oc_appconfig for appid
authorRobin Appelman <icewind@owncloud.com>
Wed, 18 Dec 2013 14:13:27 +0000 (15:13 +0100)
committerRobin Appelman <icewind@owncloud.com>
Wed, 18 Dec 2013 14:13:27 +0000 (15:13 +0100)
db_structure.xml
version.php

index db817faecee6449282fd0add94594707e9765544..3cb2af287afe5175faa5498f36a83a2d4334e3fe 100644 (file)
                                        <sorting>ascending</sorting>
                                </field>
                        </index>
+                       <index>
+                               <name>appconfig_appid_key</name>
+                               <field>
+                                       <name>appid</name>
+                                       <sorting>ascending</sorting>
+                               </field>
+                       </index>
 
                </declaration>
 
index 2e1fc7e17f8155c1b305cf2e201f0b231a4146e1..470aa8950725a38b75f3fb7499385a92c26f9d78 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 // We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel when updating major/minor version number.
-$OC_Version=array(6, 90, 0, 0);
+$OC_Version=array(6, 90, 0, 1);
 
 // The human readable string
 $OC_VersionString='7.0 pre alpha';