-- initialize some stuff -- olah create function inline_0 () returns integer as ' begin perform notification_interval__new ( null, ''weekly'', 3600 * 24 * 7, now(), null, null, null ); perform notification_interval__new ( null, ''every other day'', 3600 * 24 * 2, now(), null, null, null ); return null; end;' language 'plpgsql'; select inline_0(); drop function inline_0 ();