mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 17:01:00 +03:00
Fix#1947 (#1960)
* Fixes #1947 * Lint fix * fallback from timestamp with timezone to timestamp --------- Co-authored-by: Emrah TOY <emrah.toy@mtekbilisim.com>
This commit is contained in:
@@ -11,7 +11,7 @@ export class ChatMessage implements IChatMessage {
|
||||
role: MessageType
|
||||
|
||||
@Index()
|
||||
@Column()
|
||||
@Column({ type: 'uuid' })
|
||||
chatflowid: string
|
||||
|
||||
@Column({ type: 'text' })
|
||||
@@ -32,15 +32,16 @@ export class ChatMessage implements IChatMessage {
|
||||
@Column()
|
||||
chatType: string
|
||||
|
||||
@Column()
|
||||
@Column({ type: 'uuid' })
|
||||
chatId: string
|
||||
|
||||
@Column({ nullable: true })
|
||||
memoryType?: string
|
||||
|
||||
@Column({ nullable: true })
|
||||
@Column({ type: 'uuid', nullable: true })
|
||||
sessionId?: string
|
||||
|
||||
@Column({type:'timestamp'})
|
||||
@CreateDateColumn()
|
||||
createdDate: Date
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user