From b4f40e4da0ac50820ac6afcdfabbb01448c2f067 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 27 Jun 2014 16:48:42 +0200 Subject: [PATCH 1/2] shorten userid columns to 64 chars, ref #9186 --- db_structure.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db_structure.xml b/db_structure.xml index 0791270a4b9..b37a5b36597 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -813,7 +813,7 @@ text true - 255 + 64 @@ -1226,7 +1226,7 @@ text true - 255 + 64 From 2b8745842b0f0f1b59785e71232120e0b2ab11b7 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Sat, 28 Jun 2014 11:18:58 +0200 Subject: [PATCH 2/2] trigger db update --- version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.php b/version.php index 9df9a76f2eb..eb7b815bb7e 100644 --- a/version.php +++ b/version.php @@ -3,7 +3,7 @@ // We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades // between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel // when updating major/minor version number. -$OC_Version=array(7, 0, 0, 2); +$OC_Version=array(7, 0, 0, 3); // The human readable string $OC_VersionString='7.0 beta 1';