extend configkey column to hold 128bit values

This commit is contained in:
Michael Göhler 2012-10-14 22:25:05 +02:00
parent ae1f33db54
commit 22fa23b4da
2 changed files with 2 additions and 2 deletions

View File

@ -395,7 +395,7 @@
<type>text</type> <type>text</type>
<default></default> <default></default>
<notnull>true</notnull> <notnull>true</notnull>
<length>64</length> <length>128</length>
</field> </field>
<field> <field>

View File

@ -83,7 +83,7 @@ class OC_Util {
*/ */
public static function getVersion() { public static function getVersion() {
// hint: We only can count up. So the internal version number of ownCloud 4.5 will be 4.90.0. This is not visible to the user // hint: We only can count up. So the internal version number of ownCloud 4.5 will be 4.90.0. This is not visible to the user
return array(4,91,00); return array(4,91,01);
} }
/** /**