From 075af58eea2b3190762ee2134bd9a341a8d4546e Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sat, 30 Jul 2016 23:53:31 +0200 Subject: Fix dbprefix in database example config Mysql doesn't like unquoted dashes, but tablenames aren't quoted everywhere so that queries don't need to be duplicated for postgres. Underscores don't cause problems so use these. Signed-off-by: Florian Pritz --- application/config/example/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/config/example/database.php b/application/config/example/database.php index 7a0e63d56..4ea1d22f1 100644 --- a/application/config/example/database.php +++ b/application/config/example/database.php @@ -68,7 +68,7 @@ if (getenv("ENVIRONMENT") === "testsuite") { // Change these to your likeing, just make sure they // don't overlap with the normal settings. $db['default']['database'] = "filebin_testsuite"; - $db['default']['dbprefix'] = "testsuite-prefix-"; + $db['default']['dbprefix'] = "testsuite_prefix_"; } -- cgit v1.2.3-24-g4f1b