merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit 3a9bfda488bb649e47b58ccd11b605b21ed17eb8
parent ba8aa553a394bb956dc9c11731288c56138a7d99
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 21 Feb 2023 12:21:12 +0100

-fix comments

Diffstat:
Msrc/backenddb/merchant-0004.sql | 12++----------
1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/src/backenddb/merchant-0004.sql b/src/backenddb/merchant-0004.sql @@ -26,8 +26,6 @@ SELECT _v.register_patch('merchant-0004', NULL, NULL); SET search_path TO merchant; --- create table here! - CREATE TABLE IF NOT EXISTS merchant_template (template_serial BIGINT GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY ,merchant_serial BIGINT NOT NULL @@ -106,28 +104,22 @@ COMMENT ON COLUMN merchant_pending_webhooks.body IS 'Body of the webhook'; - ALTER TABLE merchant_kyc ADD COLUMN aml_decision INT4 NOT NULL DEFAULT (0); - COMMENT ON COLUMN merchant_kyc.aml_decision IS 'current AML decision for our account at the exchange'; - ALTER TABLE merchant_orders ADD COLUMN pos_key VARCHAR; - COMMENT ON COLUMN merchant_orders.pos_key - IS 'encoded based key which is used for the verification of payment'; - + IS 'point-of-sale key which is used for the verification of payment'; ALTER TABLE merchant_contract_terms ADD COLUMN pos_key VARCHAR; - COMMENT ON COLUMN merchant_contract_terms.pos_key - IS 'enconded based key which is used for the verification of payment'; + IS 'point-of-sale key which is used for the verification of payment'; COMMIT;