From 7a04026e67856273b288414f4c41fc0df9a625a1 Mon Sep 17 00:00:00 2001 From: xbgmsharp Date: Tue, 20 Jun 2023 09:05:27 +0200 Subject: [PATCH] Marked old function as deprecated --- initdb/02_2_signalk_cron.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/initdb/02_2_signalk_cron.sql b/initdb/02_2_signalk_cron.sql index c8353ee..4da8987 100644 --- a/initdb/02_2_signalk_cron.sql +++ b/initdb/02_2_signalk_cron.sql @@ -238,7 +238,7 @@ $$ language plpgsql; -- Description COMMENT ON FUNCTION public.cron_process_new_account_fn - IS 'init by pg_cron to check for new account pending update, if so perform process_account_queue_fn'; + IS 'deprecated, init by pg_cron to check for new account pending update, if so perform process_account_queue_fn'; -- CRON for new account pending otp validation notification CREATE FUNCTION cron_process_new_account_otp_validation_fn() RETURNS void AS $$ @@ -267,7 +267,7 @@ $$ language plpgsql; -- Description COMMENT ON FUNCTION public.cron_process_new_account_otp_validation_fn - IS 'init by pg_cron to check for new account otp pending update, if so perform process_account_otp_validation_queue_fn'; + IS 'deprecated, init by pg_cron to check for new account otp pending update, if so perform process_account_otp_validation_queue_fn'; -- CRON for new vessel pending notification CREATE FUNCTION cron_process_new_vessel_fn() RETURNS void AS $$ @@ -296,7 +296,7 @@ $$ language plpgsql; -- Description COMMENT ON FUNCTION public.cron_process_new_vessel_fn - IS 'init by pg_cron to check for new vessel pending update, if so perform process_vessel_queue_fn'; + IS 'deprecated, init by pg_cron to check for new vessel pending update, if so perform process_vessel_queue_fn'; -- CRON for new event notification CREATE FUNCTION cron_process_new_notification_fn() RETURNS void AS $$