Index: openacs-4/packages/notifications/sql/postgresql/notifications-drop.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/sql/postgresql/notifications-drop.sql,v diff -u -r1.3 -r1.4 --- openacs-4/packages/notifications/sql/postgresql/notifications-drop.sql 6 Nov 2003 16:44:49 -0000 1.3 +++ openacs-4/packages/notifications/sql/postgresql/notifications-drop.sql 8 Mar 2004 12:34:12 -0000 1.4 @@ -13,4 +13,5 @@ \i notifications-package-drop.sql \i notifications-core-drop.sql +\i notifications-replies-drop.sql \i notifications-replies-extra-drop.sql Index: openacs-4/packages/notifications/sql/postgresql/notifications-replies-drop.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/sql/postgresql/notifications-replies-drop.sql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/notifications/sql/postgresql/notifications-replies-drop.sql 8 Mar 2004 12:34:12 -0000 1.1 @@ -0,0 +1,16 @@ +drop table notification_replies; + +create function inline_0 () +returns integer as ' +begin + + perform acs_object_type__drop_type( + ''notification_reply'', ''f'' + ); + + return null; + +end;' language 'plpgsql'; + +select inline_0(); +drop function inline_0();