Index: openacs-4/packages/acs-kernel/sql/postgresql/authentication-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-kernel/sql/postgresql/authentication-create.sql,v diff -u -N -r1.10 -r1.11 --- openacs-4/packages/acs-kernel/sql/postgresql/authentication-create.sql 16 Sep 2003 13:03:27 -0000 1.10 +++ openacs-4/packages/acs-kernel/sql/postgresql/authentication-create.sql 8 Oct 2003 09:58:41 -0000 1.11 @@ -27,26 +27,30 @@ constraint auth_authority_enabled_p_nn 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_authentication 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_objects(object_id), - -- Id of the password management service contact implementation + -- auth_password implementation pwd_impl_id integer constraint auth_authority_pwd_impl_fk references acs_objects(object_id), forgotten_pwd_url varchar(4000), change_pwd_url varchar(4000), - -- Id of the registration service contract implementation + -- auth_registration implementation register_impl_id integer constraint auth_authority_reg_impl_fk references acs_objects(object_id), register_url varchar(4000), + -- auth_user_info implementation + user_info_impl_id integer + constraint auth_authority_userinf_impl_fk + references acs_objects(object_id), -- batch sync - -- Id of service contract getting batch sync doc + -- auth_sync_retrieve implementation get_doc_impl_id integer references acs_objects(object_id), - -- Id of service contract processing batch sync doc + -- auth_sync_process implementation process_doc_impl_id integer references acs_objects(object_id), batch_sync_enabled_p boolean default 'f' constraint auth_authority_bs_enabled_p_nn