diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/databases-all-config.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/databases-all-config.php b/tests/databases-all-config.php new file mode 100644 index 00000000000..bf5035fe6d5 --- /dev/null +++ b/tests/databases-all-config.php @@ -0,0 +1,14 @@ +<?php +/** + * SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +$CONFIG = [ + 'supportedDatabases' => [ + 'sqlite', + 'mysql', + 'pgsql', + 'oci', + ], +]; |