create a separate params table for immutable jobs fields

This commit is contained in:
yacine Bouraroui
2024-09-30 12:10:51 +02:00
parent a0542dc853
commit 1ce19166ed
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1 @@
DROP TABLE job_params;

View File

@@ -0,0 +1,9 @@
-- Add up migration script here
-- Add down migration script here
CREATE TABLE job_params (
id UUID PRIMARY KEY,
args JSONB,
raw_code TEXT,
raw_flow jsonb NULL
);