diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-17 16:12:48 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-06-06 13:33:56 +0200 |
commit | fe8bae31dc80ac832323fa8d9a75fd4b543d36e0 (patch) | |
tree | fedada14b0c6e7ad32fa588f438aa0e1cf243045 /lib/private/updater.php | |
parent | c47d4ebbac7885ad91cf56355bd6aa09318ff8e8 (diff) | |
download | nextcloud-server-fe8bae31dc80ac832323fa8d9a75fd4b543d36e0.tar.gz nextcloud-server-fe8bae31dc80ac832323fa8d9a75fd4b543d36e0.zip |
adding PK to table encryption
adding auto increment/PK to table files_trash
adding PK to table ldap_user_mapping and ldap_group_members
adding PK to table ldap_group_mapping
truncate permissions table to allow smooth creation of primary key
adding unit test for creating an auto increment column on a table which already contains data
remove unneeded table files_trashsizes
fix unit test
no need to truncate *PREFIX*permissions
On Oracle adding auto increment columns is not working out of the box - Oracle migrations are to be done manually
Diffstat (limited to 'lib/private/updater.php')
-rw-r--r-- | lib/private/updater.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/updater.php b/lib/private/updater.php index 58a4086c80f..9cc1b3322eb 100644 --- a/lib/private/updater.php +++ b/lib/private/updater.php @@ -150,6 +150,7 @@ class Updater extends BasicEmitter { // This is added to prevent host header poisoning \OC_Config::setValue('trusted_domains', \OC_Config::getValue('trusted_domains', array(\OC_Request::serverHost()))); } + /* * STOP CONFIG CHANGES FOR OLDER VERSIONS */ |