From 3ba874125e52d3eb489ec56fba898cbca84df9db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arwid=20Thornstr=C3=B6m?= Date: Mon, 13 Apr 2026 13:11:49 +0200 Subject: [PATCH] 8692 add consent handling for sms and whatsapp to site and klaviyo integration (#548) * add columns to order * Fixes * Updated to correct migration number --- migrations/000.621.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 migrations/000.621.sql diff --git a/migrations/000.621.sql b/migrations/000.621.sql new file mode 100644 index 0000000..7514152 --- /dev/null +++ b/migrations/000.621.sql @@ -0,0 +1,3 @@ +-- Description: Add sms and whatsapp consent fields to ordersALTER TABLE orders ADD COLUMN IF NOT EXISTS sms integer NOT NULL DEFAULT 0; +ALTER TABLE orders ADD COLUMN IF NOT EXISTS sms integer NOT NULL DEFAULT 0; +ALTER TABLE orders ADD COLUMN IF NOT EXISTS whatsapp integer NOT NULL DEFAULT 0;