From dda79a90cf50f98c1dc4c98401be8707b7103346 Mon Sep 17 00:00:00 2001 From: Robin Appelman <icewind@owncloud.com> Date: Sat, 25 Feb 2012 16:51:59 +0100 Subject: [PATCH] don't limit ourselfs to 32bit integers --- db_structure.xml | 12 ++++++------ lib/util.php | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/db_structure.xml b/db_structure.xml index 1d459b75fda..bdbb16759db 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -53,7 +53,7 @@ <type>integer</type> <default>0</default> <notnull>true</notnull> - <length>4</length> + <length>8</length> </field> <field> @@ -70,7 +70,7 @@ <default> </default> <notnull>true</notnull> - <length>4</length> + <length>8</length> </field> <field> @@ -96,7 +96,7 @@ <type>integer</type> <default></default> <notnull>true</notnull> - <length>4</length> + <length>8</length> </field> <field> @@ -105,7 +105,7 @@ <default> </default> <notnull>true</notnull> - <length>4</length> + <length>8</length> </field> <field> @@ -114,7 +114,7 @@ <default> </default> <notnull>true</notnull> - <length>4</length> + <length>8</length> </field> <field> @@ -291,7 +291,7 @@ <type>integer</type> <default></default> <notnull>false</notnull> - <length>4</length> + <length>8</length> </field> <field> diff --git a/lib/util.php b/lib/util.php index 05caeca0e3e..d1487931db8 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,2); + return array(3,00,3); } /** -- GitLab