feat: add custom image inputs

This commit is contained in:
BennyKok
2023-12-15 11:14:21 +08:00
parent c791f5d0a6
commit 1ea80e5e84
11 changed files with 631 additions and 7 deletions
+1
View File
@@ -82,6 +82,7 @@ export const workflowRunsTable = dbSchema.table("workflow_runs", {
onDelete: "set null",
}
),
workflow_inputs: jsonb("workflow_inputs").$type<Record<string, string>>(),
workflow_id: uuid("workflow_id")
.notNull()
.references(() => workflowTable.id, {