mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-29 03:01:10 +03:00
add text into potential large column
This commit is contained in:
@@ -22,7 +22,7 @@ export class ChatFlow implements IChatFlow {
|
|||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
apikeyid?: string
|
apikeyid?: string
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true, type: 'text' })
|
||||||
chatbotConfig?: string
|
chatbotConfig?: string
|
||||||
|
|
||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ export class ChatMessage implements IChatMessage {
|
|||||||
@Column({ type: 'text' })
|
@Column({ type: 'text' })
|
||||||
content: string
|
content: string
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true, type: 'text' })
|
||||||
sourceDocuments?: string
|
sourceDocuments?: string
|
||||||
|
|
||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ export class Credential implements ICredential {
|
|||||||
@Column()
|
@Column()
|
||||||
credentialName: string
|
credentialName: string
|
||||||
|
|
||||||
@Column()
|
@Column({ type: 'text' })
|
||||||
encryptedData: string
|
encryptedData: string
|
||||||
|
|
||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
|
|||||||
@@ -19,10 +19,10 @@ export class Tool implements ITool {
|
|||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
iconSrc?: string
|
iconSrc?: string
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true, type: 'text' })
|
||||||
schema?: string
|
schema?: string
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true, type: 'text' })
|
||||||
func?: string
|
func?: string
|
||||||
|
|
||||||
@CreateDateColumn()
|
@CreateDateColumn()
|
||||||
|
|||||||
Reference in New Issue
Block a user