diff options
author | Joas Schilling <coding@schilljs.com> | 2017-09-19 14:19:33 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-09-19 20:09:10 +0200 |
commit | d5c2b98207378e3dc548fc7290fb0d8ebd27188e (patch) | |
tree | 03a098044647a89da2254f110ca8f12be6b4c734 /version.php | |
parent | 11d2006b44b7d70e11f74e941de52a41d934d5e0 (diff) | |
download | nextcloud-server-d5c2b98207378e3dc548fc7290fb0d8ebd27188e.tar.gz nextcloud-server-d5c2b98207378e3dc548fc7290fb0d8ebd27188e.zip |
Fix missing "unsigned" on integer columns
Signed-off-by: Joas Schilling <coding@schilljs.com>
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 03c03f43c8c..7e0fba9f6aa 100644 --- a/version.php +++ b/version.php @@ -26,7 +26,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(13, 0, 0, 3); +$OC_Version = array(13, 0, 0, 4); // The human readable string $OC_VersionString = '13.0.0 alpha'; |