summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2016-07-30 23:53:31 +0200
committerFlorian Pritz <bluewind@xinu.at>2016-07-30 23:53:31 +0200
commit075af58eea2b3190762ee2134bd9a341a8d4546e (patch)
tree1a990df9194d7cd0ce8403e4b00c4ffcf975f842
parent2e7269f566a0204dbc83d6c8f423886e27d60363 (diff)
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 <bluewind@xinu.at>
-rw-r--r--application/config/example/database.php2
1 files changed, 1 insertions, 1 deletions
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_";
}