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_'
This commit is contained in:
Aldo "xoen" Giambelluca 2010-07-03 18:59:56 +02:00
parent 2e1da240ff
commit 969c8053ce
1 changed files with 1 additions and 0 deletions

View File

@ -8,4 +8,5 @@ $CONFIG_DBHOST='localhost';
$CONFIG_DBNAME='owncloud-db-name';
$CONFIG_DBUSER='user-name';
$CONFIG_DBPASSWORD='password';
$CONFIG_DBTABLEPREFIX = 'oc_';
?>