diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2012-02-24 14:18:09 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2012-02-24 14:18:09 +0100 |
commit | ca874a3ad776c9fd22c7bcbad81f493cfc551661 (patch) | |
tree | 80774761a8219892658eb180ae00d3e3e1d57fa9 | |
parent | 9df193f051c683fe69f9451ba07c4d34d480b76f (diff) | |
download | nextcloud-server-ca874a3ad776c9fd22c7bcbad81f493cfc551661.tar.gz nextcloud-server-ca874a3ad776c9fd22c7bcbad81f493cfc551661.zip |
remove limit from configvalue for long config values
-rw-r--r-- | db_structure.xml | 12 | ||||
-rw-r--r-- | lib/util.php | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/db_structure.xml b/db_structure.xml index 8e59a59c6e5..1d459b75fda 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -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> diff --git a/lib/util.php b/lib/util.php index 1b1e29b6749..05caeca0e3e 100644 --- a/lib/util.php +++ b/lib/util.php @@ -62,7 +62,7 @@ class OC_Util { * @return array */ public static function getVersion(){ - return array(3,00,1); + return array(3,00,2); } /** |