-- -- The Notifications Package -- -- @author Ben Adida (ben@openforce.net) -- @version $Id: notifications-init.sql,v 1.4 2002/08/09 20:51:49 yon Exp $ -- -- Copyright (C) 2000 MIT -- -- GNU GPL v2 -- -- initialize some stuff declare v_foo integer; begin v_foo:= notification_interval.new( name => 'daily', n_seconds => 3600 * 24, creation_user => null, creation_ip => null ); v_foo:= notification_interval.new( name => 'hourly', n_seconds => 3600, creation_user => null, creation_ip => null ); v_foo:= notification_interval.new( name => 'instant', n_seconds => 0, creation_user => null, creation_ip => null ); -- This now done by email-sc-impl-create.sql -- -- v_foo:= notification_delivery_method.new( -- short_name => 'email', -- pretty_name => 'Email', -- creation_user => null, -- creation_ip => null -- ); end; / show errors