Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-04-04 17:17:20 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2018-04-06 14:42:50 +0300
commit7a7d424e91ba66538c62cb689ac6f7311252b70d (patch)
treed66927441b06cbd1195442aad95299aaa3e43b9f /version.php
parent4a6e31c91dcbdc2cfd2cae44bf64243c5005fa13 (diff)
Add an uid_lower column to the oc_users table
Add a new column. In the postSchemaChange copy over the values (with lower). This should work just fine as this is a very simple operation. Even if you have 1M users in the db backend this should be fast enough. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'version.php')
-rw-r--r--version.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/version.php b/version.php
index 9b735f21098..bd0de81ff33 100644
--- a/version.php
+++ b/version.php
@@ -29,7 +29,7 @@
// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
// when updating major/minor version number.
-$OC_Version = array(14, 0, 0, 1);
+$OC_Version = array(14, 0, 0, 2);
// The human readable string
$OC_VersionString = '14.0.0 alpha';