summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/appinfo/database.xml
Commit message (Collapse)AuthorAgeFilesLines
* adding PK to table encryptionThomas Müller2014-06-061-1/+4
| | | | | | | | | | | | | | | | | | | | 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
* LDAP: fix db update for PostgresArthur Schiwon2012-10-231-1/+1
|
* LDAP: identify (map) users with their directory UUID. Fixes the issue, that ↵Arthur Schiwon2012-08-231-0/+16
| | | | usernames for owncloud will change, when the DN changes (which happens rarely, but it happens).
* LDAP: permanantly watch group members. Emit post_addToGroup resp. ↵Arthur Schiwon2012-08-221-0/+33
| | | | post_removeFromGroup on membership changes, so that Sharing App can take care of files shared within the groups. Requires and relies on background jobs.
* ldap: unique index names for the database, fixes non-creating of indexes for ↵Arthur Schiwon2012-05-161-4/+4
| | | | the second table and potential issues in the app
* LDAP rewrite, use unique LDAP user and group identifiers on LDAP side as ↵Arthur Schiwon2012-04-251-0/+95
well as fancy (unqiue as far as users a know from LDAP) names on the ownCloud side. It's done via mapping of owncloud names and LDAP identifiers. some performance enhancements: faster searching for users and groups in their specific subtrees. Reading instead of searching were possible. thanks for the feedback of Kevin van Kuik