From 60b3011f511e921beb11cdc4a3991fe4db596b0d Mon Sep 17 00:00:00 2001 From: Jess W Jacob <32471043+wordfencer@users.noreply.github.com> Date: Thu, 20 Mar 2025 14:36:42 -0400 Subject: [PATCH] Update co_create.sql Install script was failing when searching for "is blob" so had to change to "is not null" to complete compilation. The field type in the table itself is BLOB. --- customer_orders/co_create.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/customer_orders/co_create.sql b/customer_orders/co_create.sql index 875390a..e06761a 100644 --- a/customer_orders/co_create.sql +++ b/customer_orders/co_create.sql @@ -292,7 +292,7 @@ ALTER TABLE stores ADD CONSTRAINT store_at_least_one_address_c ALTER TABLE products ADD CONSTRAINT products_pk PRIMARY KEY (product_id); ALTER TABLE products ADD CONSTRAINT products_json_c - CHECK ( product_details is json ); + CHECK ( product_details is not null ); ALTER TABLE orders ADD CONSTRAINT orders_pk PRIMARY KEY (order_id);