mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
feat(trigger-mode): added trigger-mode to workflow_blocks table (#902)
This commit is contained in:
1
apps/sim/db/migrations/0069_lonely_spirit.sql
Normal file
1
apps/sim/db/migrations/0069_lonely_spirit.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE "workflow_blocks" ADD COLUMN "trigger_mode" boolean DEFAULT false NOT NULL;
|
||||
5863
apps/sim/db/migrations/meta/0069_snapshot.json
Normal file
5863
apps/sim/db/migrations/meta/0069_snapshot.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -477,6 +477,13 @@
|
||||
"when": 1754446277077,
|
||||
"tag": "0068_fine_hardball",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 69,
|
||||
"version": "7",
|
||||
"when": 1754603754177,
|
||||
"tag": "0069_lonely_spirit",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -162,6 +162,7 @@ export const workflowBlocks = pgTable(
|
||||
horizontalHandles: boolean('horizontal_handles').notNull().default(true),
|
||||
isWide: boolean('is_wide').notNull().default(false),
|
||||
advancedMode: boolean('advanced_mode').notNull().default(false),
|
||||
triggerMode: boolean('trigger_mode').notNull().default(false),
|
||||
height: decimal('height').notNull().default('0'),
|
||||
|
||||
subBlocks: jsonb('sub_blocks').notNull().default('{}'),
|
||||
|
||||
Reference in New Issue
Block a user