diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-04-04 16:17:20 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-04-06 13:42:50 +0200 |
commit | 7a7d424e91ba66538c62cb689ac6f7311252b70d (patch) | |
tree | d66927441b06cbd1195442aad95299aaa3e43b9f /version.php | |
parent | 4a6e31c91dcbdc2cfd2cae44bf64243c5005fa13 (diff) | |
download | nextcloud-server-7a7d424e91ba66538c62cb689ac6f7311252b70d.tar.gz nextcloud-server-7a7d424e91ba66538c62cb689ac6f7311252b70d.zip |
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.php | 2 |
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'; |