From 15e178f6b3bd6c390cc8f15b03b4f6e570c74a6f Mon Sep 17 00:00:00 2001 From: Fredrik Ringqvist <35255659+fredrikphotowall@users.noreply.github.com> Date: Mon, 10 Nov 2025 10:58:16 +0100 Subject: [PATCH] Alter type of discount_code_filters.filter_value to accept longer values (#515) --- migrations/000.585.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 migrations/000.585.sql diff --git a/migrations/000.585.sql b/migrations/000.585.sql new file mode 100644 index 0000000..225ad48 --- /dev/null +++ b/migrations/000.585.sql @@ -0,0 +1,2 @@ +-- Change the column type of filter_value from varchar(100) because we had exceeded it +ALTER TABLE discount_code_filters ALTER COLUMN filter_value TYPE text; \ No newline at end of file