Index: openacs-4/packages/acs-kernel/sql/oracle/authentication-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-kernel/sql/oracle/authentication-create.sql,v diff -u -r1.1 -r1.2 --- openacs-4/packages/acs-kernel/sql/oracle/authentication-create.sql 22 Aug 2003 11:38:08 -0000 1.1 +++ openacs-4/packages/acs-kernel/sql/oracle/authentication-create.sql 22 Aug 2003 13:31:17 -0000 1.2 @@ -29,19 +29,20 @@ check (enabled_p in ('t','f')), sort_order integer not null, -- Id of the authentication service contract implementation + -- Cannot reference acs_sc_impls table as it doesn't exist yet auth_impl_id integer constraint auth_authority_auth_impl_fk - references acs_sc_impls(impl_id), + references acs_objects(object_id), -- Id of the password management service contact implementation pwd_impl_id integer constraint auth_authority_pwd_impl_fk - references acs_sc_impls(impl_id), + references acs_objects(object_id), forgotten_pwd_url varchar2(4000), change_pwd_url varchar2(4000), -- Id of the registration service contract implementation register_impl_id integer constraint auth_authority_reg_impl_fk - references acs_sc_impls(impl_id), + references acs_objects(object_id), register_url varchar2(4000) );