Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorAldo "xoen" Giambelluca <xoen@xoen.org>2010-07-03 20:59:56 +0400
committerAldo "xoen" Giambelluca <xoen@xoen.org>2010-07-03 20:59:56 +0400
commit969c8053cecf16c912bc496d3796ee63a8933367 (patch)
tree91c5c8ae5efa9d421c1f8c66c8bc4b4da67e3bab /config
parent2e1da240ff53107d16e51614dae9221baf0b84ae (diff)
Added variable $CONFIG_DBTABLEPREFIX in configuration file for table prefix
Table prefix is useful where only one DB is possible (cheap hosting). this way is possible define something like a "namespace" default is 'oc_'
Diffstat (limited to 'config')
-rwxr-xr-xconfig/config.sample.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index dfaaa4284d6..dc1a62f46e3 100755
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -8,4 +8,5 @@ $CONFIG_DBHOST='localhost';
$CONFIG_DBNAME='owncloud-db-name';
$CONFIG_DBUSER='user-name';
$CONFIG_DBPASSWORD='password';
+$CONFIG_DBTABLEPREFIX = 'oc_';
?>