diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-17 16:12:48 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-06-06 13:33:56 +0200 |
commit | fe8bae31dc80ac832323fa8d9a75fd4b543d36e0 (patch) | |
tree | fedada14b0c6e7ad32fa588f438aa0e1cf243045 /apps/user_ldap/appinfo | |
parent | c47d4ebbac7885ad91cf56355bd6aa09318ff8e8 (diff) | |
download | nextcloud-server-fe8bae31dc80ac832323fa8d9a75fd4b543d36e0.tar.gz nextcloud-server-fe8bae31dc80ac832323fa8d9a75fd4b543d36e0.zip |
adding PK to table encryption
adding auto increment/PK to table files_trash
adding PK to table ldap_user_mapping and ldap_group_members
adding PK to table ldap_group_mapping
truncate permissions table to allow smooth creation of primary key
adding unit test for creating an auto increment column on a table which already contains data
remove unneeded table files_trashsizes
fix unit test
no need to truncate *PREFIX*permissions
On Oracle adding auto increment columns is not working out of the box - Oracle migrations are to be done manually
Diffstat (limited to 'apps/user_ldap/appinfo')
-rw-r--r-- | apps/user_ldap/appinfo/database.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/user_ldap/appinfo/database.xml b/apps/user_ldap/appinfo/database.xml index 812e450dde7..4875a70f852 100644 --- a/apps/user_ldap/appinfo/database.xml +++ b/apps/user_ldap/appinfo/database.xml @@ -46,6 +46,7 @@ <index> <name>owncloud_name_users</name> + <primary>true</primary> <unique>true</unique> <field> <name>owncloud_name</name> @@ -90,6 +91,7 @@ <index> <name>ldap_dn_groups</name> <unique>true</unique> + <primary>true</primary> <field> <name>ldap_dn</name> </field> @@ -132,6 +134,7 @@ <index> <name>ldap_group_members_index</name> <unique>true</unique> + <primary>true</primary> <field> <name>owncloudname</name> </field> @@ -141,4 +144,4 @@ </table> -</database>
\ No newline at end of file +</database> |