From 8eefcf53d0b7fd5d920fd225a142fa637eca8941 Mon Sep 17 00:00:00 2001 From: Pako Date: Tue, 4 Mar 2025 11:51:15 +0100 Subject: [PATCH] fix(priceDelta): removes not null restriction for itemTypeFk refs#8674 --- db/versions/11477-maroonCarnation/00-firstScript.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 db/versions/11477-maroonCarnation/00-firstScript.sql diff --git a/db/versions/11477-maroonCarnation/00-firstScript.sql b/db/versions/11477-maroonCarnation/00-firstScript.sql new file mode 100644 index 0000000000..2ad2b9688d --- /dev/null +++ b/db/versions/11477-maroonCarnation/00-firstScript.sql @@ -0,0 +1,3 @@ +-- Place your SQL code here +ALTER TABLE vn.priceDelta MODIFY COLUMN itemTypeFk smallint(5) unsigned NULL; +