From 969c8053cecf16c912bc496d3796ee63a8933367 Mon Sep 17 00:00:00 2001 From: "Aldo \"xoen\" Giambelluca" Date: Sat, 3 Jul 2010 18:59:56 +0200 Subject: [PATCH] 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_' --- config/config.sample.php | 1 + 1 file changed, 1 insertion(+) 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_'; ?> -- 2.39.5