diff options
author | Aldo "xoen" Giambelluca <xoen@xoen.org> | 2010-07-03 18:59:56 +0200 |
---|---|---|
committer | Aldo "xoen" Giambelluca <xoen@xoen.org> | 2010-07-03 18:59:56 +0200 |
commit | 969c8053cecf16c912bc496d3796ee63a8933367 (patch) | |
tree | 91c5c8ae5efa9d421c1f8c66c8bc4b4da67e3bab /config | |
parent | 2e1da240ff53107d16e51614dae9221baf0b84ae (diff) | |
download | nextcloud-server-969c8053cecf16c912bc496d3796ee63a8933367.tar.gz nextcloud-server-969c8053cecf16c912bc496d3796ee63a8933367.zip |
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-x | config/config.sample.php | 1 |
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_'; ?> |