diff --git a/initdb/02_3_1_signalk_public_tables.sql b/initdb/02_3_1_signalk_public_tables.sql index 1d1b72b..57d9a6a 100644 --- a/initdb/02_3_1_signalk_public_tables.sql +++ b/initdb/02_3_1_signalk_public_tables.sql @@ -181,7 +181,7 @@ begin -- Add email_otp check only if not from oauth server if (NEW.preferences->>'email_verified')::boolean IS NOT True then insert into process_queue (channel, payload, stored, ref_id) values ('email_otp', NEW.email, now(), NEW.user_id); - end if + end if; return NEW; END; $new_account_otp_validation_entry$ language plpgsql;