remove limit from configvalue for long config values

This commit is contained in:
Arthur Schiwon 2012-02-24 14:18:09 +01:00
parent 9df193f051
commit ca874a3ad7
2 changed files with 7 additions and 7 deletions

View File

@ -31,12 +31,12 @@
<field>
<name>configvalue</name>
<type>text</type>
<default></default>
<type>clob</type>
<notnull>true</notnull>
<length>255</length>
</field>
</declaration>
</table>
@ -55,7 +55,7 @@
<notnull>true</notnull>
<length>4</length>
</field>
<field>
<name>path</name>
<type>text</type>
@ -90,7 +90,7 @@
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>size</name>
<type>integer</type>
@ -522,7 +522,7 @@
</declaration>
</table>
<table>
<name>*dbprefix*properties</name>

View File

@ -62,7 +62,7 @@ class OC_Util {
* @return array
*/
public static function getVersion(){
return array(3,00,1);
return array(3,00,2);
}
/**