From a162a1d8618745affefa2d489cd185aac8620041 Mon Sep 17 00:00:00 2001 From: Anadi Mishra Date: Mon, 20 Jan 2020 13:12:40 +0530 Subject: [PATCH] MOS-31009 push to upstream with John The comments are valid. Please give good eamples of ref_id and ref_id_type in the data definition. --- db_scripts/mosip_kernel/ddl/kernel-otp_transaction.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db_scripts/mosip_kernel/ddl/kernel-otp_transaction.sql b/db_scripts/mosip_kernel/ddl/kernel-otp_transaction.sql index 6077d14df9c..1e5b2f6e15d 100644 --- a/db_scripts/mosip_kernel/ddl/kernel-otp_transaction.sql +++ b/db_scripts/mosip_kernel/ddl/kernel-otp_transaction.sql @@ -37,9 +37,9 @@ COMMENT ON TABLE kernel.otp_transaction IS 'OTP Transaction: All OTP related dat -- ddl-end -- COMMENT ON COLUMN kernel.otp_transaction.id IS 'ID: Unique transaction id for each otp transaction request'; -- ddl-end -- -COMMENT ON COLUMN kernel.otp_transaction.ref_id IS 'Reference ID: Reference ID is a reference information received from OTP requester which can be used while validating the OTP.'; +COMMENT ON COLUMN kernel.otp_transaction.ref_id IS 'Reference ID: Reference ID is a reference information received from OTP requester which can be used while validating the OTP. AM: please give examples of ref_id'; -- ddl-end -- -COMMENT ON COLUMN kernel.otp_transaction.ref_id_type IS 'Reference ID Type: Type of information in Reference ID field, used to reference this OTP request.'; +COMMENT ON COLUMN kernel.otp_transaction.ref_id_type IS 'Reference ID Type: Type of information in Reference ID field, used to reference this OTP request. AM: i guess only email & ph are the types. Please specify'; -- ddl-end -- COMMENT ON COLUMN kernel.otp_transaction.otp IS 'OTP: One Time Pin which is generated based on the configuration setup and sent to the requester application / module.'; -- ddl-end --