-
Notifications
You must be signed in to change notification settings - Fork 496
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip: split out raw_code and raw_flow from queue
- Loading branch information
Showing
10 changed files
with
238 additions
and
128 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
backend/migrations/20241004112544_create_params_args_result_tables.down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE job_params; |
7 changes: 7 additions & 0 deletions
7
backend/migrations/20241004112544_create_params_args_result_tables.up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CREATE TABLE job_params ( | ||
id UUID PRIMARY KEY, | ||
raw_code TEXT, | ||
raw_flow jsonb NULL, | ||
tag VARCHAR(50), | ||
workspace_id VARCHAR(50) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.