diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-11-05 08:40:21 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-11-05 08:40:21 +0100 |
commit | 3778680f3f72440c3da849c2974273bab209576f (patch) | |
tree | 4ac33798b9d81068fb2aee04a6396d7daea44140 | |
parent | 2f4fa5b49c38c75e60b0cb46e2878e4176e0dd03 (diff) | |
download | nextcloud-server-3778680f3f72440c3da849c2974273bab209576f.tar.gz nextcloud-server-3778680f3f72440c3da849c2974273bab209576f.zip |
Drop unused tables principalgroups and principals
* was removed in 3e84f170e7133d9acc46123ba4c901a24e438b2c
-rw-r--r-- | lib/repair/dropoldtables.php | 2 | ||||
-rw-r--r-- | version.php | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lib/repair/dropoldtables.php b/lib/repair/dropoldtables.php index cfe0df6cb5b..257ffd0d86d 100644 --- a/lib/repair/dropoldtables.php +++ b/lib/repair/dropoldtables.php @@ -85,6 +85,8 @@ class DropOldTables extends BasicEmitter implements RepairStep { 'media_users', 'permissions', 'pictures_images_cache', + 'principalgroups', + 'principals', 'queuedtasks', 'sharing', ]; diff --git a/version.php b/version.php index dd499a8d1d8..7f45f5899e1 100644 --- a/version.php +++ b/version.php @@ -25,7 +25,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(9, 0, 0, 1); +$OC_Version = array(9, 0, 0, 2); // The human readable string $OC_VersionString = '9.0 pre alpha'; |