Commit cd5913e671fa5f242b1ed951f583664f340ad434

Authored by nbm
1 parent 79b53994

Rename ldap_cn to authentication_details_s1, and authentication_details

to authentication_details_s2 in users table.

Add authentication_source_id, authentication_details_s1, and
authentication_details_s2 to groups table.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4824 c91229c3-7414-0410-bfa2-8a42b809f60b
sql/mysql/upgrade/2.99.8/25-authentication_details.sql 0 → 100644
  1 +ALTER TABLE `users` CHANGE `ldap_dn` `authentication_details_s1` VARCHAR( 255 ) NULL DEFAULT NULL ;
  2 +ALTER TABLE `users` CHANGE `authentication_details` `authentication_details_s2` VARCHAR( 255 ) NULL DEFAULT NULL ;
  3 +ALTER TABLE `groups_lookup` ADD COLUMN `authentication_details_s2` varchar(255) default NULL;
  4 +ALTER TABLE `groups_lookup` ADD COLUMN `authentication_details_s1` varchar(255) default NULL;
  5 +ALTER TABLE `groups_lookup` ADD INDEX `authentication_details_s1` (`authentication_details_s1`);
  6 +ALTER TABLE `groups_lookup` ADD `authentication_source_id` INT NULL ;
  7 +ALTER TABLE `groups_lookup` ADD INDEX ( `authentication_source_id` ) ;
... ...