rogerrut 2004/12/04 14:25:23 Modified: src/sql/hsql drop.sql Log: Fix for SSO Entries where not unique to a user/site which required an new association table (SSO_SITE_TO_REMOTE) Re factored the code for the API to include the mapping table Updated Unit test Revision Changes Path 1.2 +1 -1 jakarta-jetspeed-2/src/sql/hsql/drop.sql Index: drop.sql =================================================================== RCS file: /home/cvs/jakarta-jetspeed-2/src/sql/hsql/drop.sql,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- drop.sql 4 Dec 2004 04:00:26 -0000 1.1 +++ drop.sql 4 Dec 2004 22:25:22 -0000 1.2 @@ -4,10 +4,10 @@ drop table PD_METADATA_FIELDS if exists;
drop table USER_ATTRIBUTE_REF if exists; drop table USER_ATTRIBUTE if exists; -drop table SSO_SITE_TO_CREDENTIALS if exists; drop table SECURITY_CREDENTIAL if exists; drop table SSO_SITE_TO_PRINCIPALS if exists; drop table SSO_PRINCIPAL_TO_REMOTE if exists; +drop table SSO_SITE_TO_REMOTE if exists; drop table SECURITY_USER_ROLE if exists; drop table SECURITY_USER_GROUP if exists; drop table SECURITY_GROUP_ROLE if exists; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
