diff options
author | Robin Appelman <icewind1991@gmail.com> | 2010-07-06 19:57:08 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2010-07-06 19:57:08 +0200 |
commit | 581328fbc1a9c56654ddd49c407b5b6cc28fbc50 (patch) | |
tree | cc0164a4bae523ce4bdc4462f626bfa936e405ae /db_structure.xml | |
parent | 9fe7f992d9323f4509d7fa7c0f895c22141dcc06 (diff) | |
download | nextcloud-server-581328fbc1a9c56654ddd49c407b5b6cc28fbc50.tar.gz nextcloud-server-581328fbc1a9c56654ddd49c407b5b6cc28fbc50.zip |
Fix custom database names
Diffstat (limited to 'db_structure.xml')
-rwxr-xr-x | db_structure.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/db_structure.xml b/db_structure.xml index f5d0f24505e..7efb722bd72 100755 --- a/db_structure.xml +++ b/db_structure.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="ISO-8859-1" ?> <database> - <name>owncloud</name> + <name>*dbname*</name> <create>true</create> <overwrite>false</overwrite> @@ -9,7 +9,7 @@ <table> - <name>groups</name> + <name>*dbprefix*groups</name> <declaration> @@ -45,7 +45,7 @@ <table> - <name>locks</name> + <name>*dbprefix*locks</name> <declaration> @@ -173,7 +173,7 @@ <table> - <name>log</name> + <name>*dbprefix*log</name> <declaration> @@ -224,7 +224,7 @@ <table> - <name>properties</name> + <name>*dbprefix*properties</name> <declaration> @@ -289,7 +289,7 @@ <table> - <name>user_group</name> + <name>*dbprefix*user_group</name> <declaration> @@ -324,7 +324,7 @@ <table> - <name>users</name> + <name>*dbprefix*users</name> <declaration> |