commit 052e3b55b3af20ac744251b9e945af4611422e9f
parent 9ac6fc8c84748f3de070b44822ec47c4f854bd15
Author: priscilla <priscilla.huang@efrei.net>
Date: Tue, 21 Feb 2023 12:41:06 -0500
fix syntax
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/backenddb/merchant-0004.sql b/src/backenddb/merchant-0004.sql
@@ -32,8 +32,8 @@ CREATE TABLE IF NOT EXISTS merchant_template
REFERENCES merchant_instances (merchant_serial) ON DELETE CASCADE
,template_id VARCHAR NOT NULL
,template_description VARCHAR NOT NULL
- ,pos_key VARCHAR DEFAULT NULL,
- ,pos_algorithm INT NOT NULL DEFAULT (0);
+ ,pos_key VARCHAR DEFAULT NULL
+ ,pos_algorithm INT NOT NULL DEFAULT (0)
,template_contract VARCHAR NOT NULL -- in JSON format
,UNIQUE (merchant_serial, template_id)
);