diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-10-01 14:23:25 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-10-01 14:23:25 +0200 |
commit | 7cbdd9b90bcea3566b7d0198f23da3d427e6ef45 (patch) | |
tree | effe5dc646cf32b799e49963d24412d5f6ce9420 /config/config.sample.php | |
parent | 64994facce890e53a50bc75047e502e434c9c749 (diff) | |
download | nextcloud-server-7cbdd9b90bcea3566b7d0198f23da3d427e6ef45.tar.gz nextcloud-server-7cbdd9b90bcea3566b7d0198f23da3d427e6ef45.zip |
setting to skip migration tests by default
* if you install owncloud via package it is not
possible to skip migration tests
* this also allows to disable migration tests for
an instance by default
Diffstat (limited to 'config/config.sample.php')
-rw-r--r-- | config/config.sample.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index cf4b25b0674..88d1a294622 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1141,6 +1141,15 @@ $CONFIG = array( 'debug' => false, /** + * Skips the migration test during upgrades + * + * If this is set to true the migration test are deactivated during upgrade. + * This is only recommended in installations where upgrade tests are run in + * advance with the same data on a test system. + */ +'update.skip-migration-test' => false, + +/** * This entry is just here to show a warning in case somebody copied the sample * configuration. DO NOT ADD THIS SWITCH TO YOUR CONFIGURATION! * |