mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 19:00:59 +03:00
Merge pull request #485 from FlowiseAI/bugfix/SQ_LITE_NOT_NULL
Bugfix/SQLITE_NOT_NULL
This commit is contained in:
@@ -9,9 +9,10 @@ export interface IChatFlow {
|
||||
id: string
|
||||
name: string
|
||||
flowData: string
|
||||
isPublic: boolean
|
||||
deployed: boolean
|
||||
updatedDate: Date
|
||||
createdDate: Date
|
||||
isPublic?: boolean
|
||||
apikeyid?: string
|
||||
chatbotConfig?: string
|
||||
}
|
||||
|
||||
@@ -14,7 +14,10 @@ export class ChatFlow implements IChatFlow {
|
||||
flowData: string
|
||||
|
||||
@Column()
|
||||
isPublic: boolean
|
||||
deployed: boolean
|
||||
|
||||
@Column({ nullable: true })
|
||||
isPublic?: boolean
|
||||
|
||||
@Column({ nullable: true })
|
||||
apikeyid?: string
|
||||
|
||||
@@ -201,6 +201,7 @@ const Canvas = () => {
|
||||
if (!chatflow.id) {
|
||||
const newChatflowBody = {
|
||||
name: chatflowName,
|
||||
deployed: false,
|
||||
isPublic: false,
|
||||
flowData
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user