some more sane column sizes for appconfig and preferences

This commit is contained in:
Robin Appelman 2012-09-27 22:49:01 +02:00
parent 232936b99a
commit e8df2eeefc
2 changed files with 8 additions and 8 deletions

View File

@ -18,7 +18,7 @@
<type>text</type> <type>text</type>
<default></default> <default></default>
<notnull>true</notnull> <notnull>true</notnull>
<length>255</length> <length>32</length>
</field> </field>
<field> <field>
@ -26,7 +26,7 @@
<type>text</type> <type>text</type>
<default></default> <default></default>
<notnull>true</notnull> <notnull>true</notnull>
<length>255</length> <length>64</length>
</field> </field>
<field> <field>
@ -310,7 +310,7 @@
<type>text</type> <type>text</type>
<default></default> <default></default>
<notnull>false</notnull> <notnull>false</notnull>
<length>200</length> <length>64</length>
</field> </field>
<field> <field>
@ -379,7 +379,7 @@
<type>text</type> <type>text</type>
<default></default> <default></default>
<notnull>true</notnull> <notnull>true</notnull>
<length>255</length> <length>64</length>
</field> </field>
<field> <field>
@ -387,7 +387,7 @@
<type>text</type> <type>text</type>
<default></default> <default></default>
<notnull>true</notnull> <notnull>true</notnull>
<length>255</length> <length>32</length>
</field> </field>
<field> <field>
@ -395,7 +395,7 @@
<type>text</type> <type>text</type>
<default></default> <default></default>
<notnull>true</notnull> <notnull>true</notnull>
<length>255</length> <length>64</length>
</field> </field>
<field> <field>
@ -435,7 +435,7 @@
<type>text</type> <type>text</type>
<default></default> <default></default>
<notnull>true</notnull> <notnull>true</notnull>
<length>200</length> <length>64</length>
</field> </field>
<field> <field>

View File

@ -81,7 +81,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,9,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,9,0. This is not visible to the user
return array(4,85,10); return array(4,85,11);
} }
/** /**