mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-09 15:07:55 -05:00
feat(versions): added the ability to rename deployment versions (#1610)
This commit is contained in:
1
packages/db/migrations/0099_deep_sir_ram.sql
Normal file
1
packages/db/migrations/0099_deep_sir_ram.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE "workflow_deployment_version" ADD COLUMN "name" text;
|
||||
6964
packages/db/migrations/meta/0099_snapshot.json
Normal file
6964
packages/db/migrations/meta/0099_snapshot.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -687,6 +687,13 @@
|
||||
"when": 1760206888564,
|
||||
"tag": "0098_thick_prima",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 99,
|
||||
"version": "7",
|
||||
"when": 1760240967304,
|
||||
"tag": "0099_deep_sir_ram",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1317,6 +1317,7 @@ export const workflowDeploymentVersion = pgTable(
|
||||
.notNull()
|
||||
.references(() => workflow.id, { onDelete: 'cascade' }),
|
||||
version: integer('version').notNull(),
|
||||
name: text('name'),
|
||||
state: json('state').notNull(),
|
||||
isActive: boolean('is_active').notNull().default(false),
|
||||
createdAt: timestamp('created_at').notNull().defaultNow(),
|
||||
|
||||
Reference in New Issue
Block a user