Index: openacs-4/packages/acs-kernel/sql/postgresql/upgrade/upgrade-5.0d2-5.0d3.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-kernel/sql/postgresql/upgrade/upgrade-5.0d2-5.0d3.sql,v diff -u -r1.1 -r1.2 --- openacs-4/packages/acs-kernel/sql/postgresql/upgrade/upgrade-5.0d2-5.0d3.sql 22 Aug 2003 11:38:09 -0000 1.1 +++ openacs-4/packages/acs-kernel/sql/postgresql/upgrade/upgrade-5.0d2-5.0d3.sql 22 Aug 2003 13:31:17 -0000 1.2 @@ -25,19 +25,20 @@ not null, 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), + 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), + acs_objects(object_id), forgotten_pwd_url varchar(4000), change_pwd_url varchar(4000), -- Id of the registration service contract implementation register_impl_id integer constraint auth_authority_reg_impl_fk - references acs_sc_impls(impl_id), + acs_objects(object_id), register_url varchar(4000) );