feat(description): added version description for deployments table

This commit is contained in:
waleed
2026-01-28 11:11:18 -08:00
parent 304cf717a4
commit d4af644159
9 changed files with 10632 additions and 38 deletions

View File

@@ -0,0 +1 @@
ALTER TABLE "workflow_deployment_version" ADD COLUMN "description" text;

File diff suppressed because it is too large Load Diff

View File

@@ -1030,6 +1030,13 @@
"when": 1769134350805,
"tag": "0147_rare_firebrand",
"breakpoints": true
},
{
"idx": 148,
"version": "7",
"when": 1769626313827,
"tag": "0148_aberrant_venom",
"breakpoints": true
}
]
}

View File

@@ -1634,6 +1634,7 @@ export const workflowDeploymentVersion = pgTable(
.references(() => workflow.id, { onDelete: 'cascade' }),
version: integer('version').notNull(),
name: text('name'),
description: text('description'),
state: json('state').notNull(),
isActive: boolean('is_active').notNull().default(false),
createdAt: timestamp('created_at').notNull().defaultNow(),