From f08461cf35f260a36d86608e14986dd3506645db Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Thu, 26 Mar 2026 18:23:26 +0100 Subject: [PATCH] feat(db): add attributes JSONB columns to executions and processor_executions (Task 1) Co-Authored-By: Claude Sonnet 4.6 --- .../src/main/resources/db/migration/V5__attributes.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 cameleer3-server-app/src/main/resources/db/migration/V5__attributes.sql diff --git a/cameleer3-server-app/src/main/resources/db/migration/V5__attributes.sql b/cameleer3-server-app/src/main/resources/db/migration/V5__attributes.sql new file mode 100644 index 00000000..817c07ea --- /dev/null +++ b/cameleer3-server-app/src/main/resources/db/migration/V5__attributes.sql @@ -0,0 +1,2 @@ +ALTER TABLE executions ADD COLUMN IF NOT EXISTS attributes JSONB; +ALTER TABLE processor_executions ADD COLUMN IF NOT EXISTS attributes JSONB;