From bf392f9375789bb0233bee74f11395aecb482477 Mon Sep 17 00:00:00 2001 From: Anders Gustafsson <34234789+anders-photowall@users.noreply.github.com> Date: Thu, 25 Jun 2026 13:57:13 +0200 Subject: [PATCH] 7604 - Add pickup_location_id to ingrid_deliveries (#483) * 7604 - Add pickup_location_id to ingrid_deliveries * 7604 - adjust migration id to be able to merge master * 7604 - actually add the migration --- migrations/000.999.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 migrations/000.999.sql diff --git a/migrations/000.999.sql b/migrations/000.999.sql new file mode 100644 index 0000000..91a613f --- /dev/null +++ b/migrations/000.999.sql @@ -0,0 +1,2 @@ +ALTER TABLE ingrid_deliveries + ADD COLUMN IF NOT EXISTS pickup_location_id TEXT DEFAULT NULL;