Add indexes and primary keys.

This commit is contained in:
Thomas Tanghus 2013-03-19 01:35:12 +01:00
parent 935d2169c8
commit f052846914
2 changed files with 55 additions and 1 deletions

View File

@ -37,6 +37,8 @@
<index>
<name>appconfig_appid_key_index</name>
<primary>true</primary>
<unique>true</unique>
<field>
<name>appid</name>
<sorting>ascending</sorting>
@ -134,6 +136,7 @@
<index>
<name>file_map_lp_index</name>
<primary>true</primary>
<unique>true</unique>
<field>
<name>logic_path_hash</name>
@ -379,6 +382,7 @@
<index>
<name>id_user_index</name>
<unique>true</unique>
<primary>true</primary>
<field>
<name>fileid</name>
<sorting>ascending</sorting>
@ -415,6 +419,20 @@
<length>64</length>
</field>
<index>
<name>gu_gid_uid_index</name>
<primary>true</primary>
<unique>true</unique>
<field>
<name>gid</name>
<sorting>ascending</sorting>
</field>
<field>
<name>uid</name>
<sorting>ascending</sorting>
</field>
</index>
</declaration>
</table>
@ -448,6 +466,20 @@
</field>
</index>
<index>
<name>ga_gid_uid_index</name>
<primary>true</primary>
<unique>true</unique>
<field>
<name>gid</name>
<sorting>ascending</sorting>
</field>
<field>
<name>uid</name>
<sorting>ascending</sorting>
</field>
</index>
</declaration>
</table>
@ -596,6 +628,8 @@
<index>
<name>pref_userid_appid_key_index</name>
<primary>true</primary>
<unique>true</unique>
<field>
<name>userid</name>
<sorting>ascending</sorting>
@ -620,6 +654,15 @@
<declaration>
<field>
<name>id</name>
<autoincrement>1</autoincrement>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<length>4</length>
</field>
<field>
<name>userid</name>
<type>text</type>
@ -651,6 +694,17 @@
<length>255</length>
</field>
<index>
<name>user_propertypath_index</name>
<field>
<name>userid</name>
<sorting>ascending</sorting>
</field>
<field>
<name>propertypath</name>
<sorting>ascending</sorting>
</field>
</index>
</declaration>
</table>

View File

@ -75,7 +75,7 @@ class OC_Util {
public static function getVersion() {
// hint: We only can count up. Reset minor/patchlevel when
// updating major/minor version number.
return array(5, 80, 00);
return array(5, 80, 01);
}
/**