summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-02-21 12:21:12 +0100
committerChristian Grothoff <christian@grothoff.org>2023-02-21 12:21:12 +0100
commit3a9bfda488bb649e47b58ccd11b605b21ed17eb8 (patch)
tree51221846f0b7b090a407b82adcccb66b5f7800a6 /src
parentba8aa553a394bb956dc9c11731288c56138a7d99 (diff)
downloadmerchant-3a9bfda488bb649e47b58ccd11b605b21ed17eb8.tar.gz
merchant-3a9bfda488bb649e47b58ccd11b605b21ed17eb8.tar.bz2
merchant-3a9bfda488bb649e47b58ccd11b605b21ed17eb8.zip
-fix comments
Diffstat (limited to 'src')
-rw-r--r--src/backenddb/merchant-0004.sql12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/backenddb/merchant-0004.sql b/src/backenddb/merchant-0004.sql
index 696e60fc..0696886d 100644
--- 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;