Skip to content

Commit 1d74473

Browse files
committed
update deployed as nullable
1 parent 8e13912 commit 1d74473

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/server/src/Interface.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ export interface IChatFlow {
99
id: string
1010
name: string
1111
flowData: string
12-
deployed: boolean
1312
updatedDate: Date
1413
createdDate: Date
14+
deployed?: boolean
1515
isPublic?: boolean
1616
apikeyid?: string
1717
chatbotConfig?: string

packages/server/src/entity/ChatFlow.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ export class ChatFlow implements IChatFlow {
1313
@Column()
1414
flowData: string
1515

16-
@Column()
17-
deployed: boolean
16+
@Column({ nullable: true })
17+
deployed?: boolean
1818

1919
@Column({ nullable: true })
2020
isPublic?: boolean

0 commit comments

Comments
 (0)