* ChatId andSessionId returned back to varchar type.

* Will fix problems for the users whom already migrated to 1.6.2

---------

Co-authored-by: Emrah TOY <emrah.toy@mtekbilisim.com>
This commit is contained in:
Emrah TOY
2024-03-23 10:11:43 +03:00
committed by GitHub
parent 0267005225
commit 813f622f6d
3 changed files with 6 additions and 6 deletions
@@ -32,13 +32,13 @@ export class ChatMessage implements IChatMessage {
@Column()
chatType: string
@Column({ type: 'uuid' })
@Column({ type: 'varchar' })
chatId: string
@Column({ nullable: true })
memoryType?: string
@Column({ type: 'uuid', nullable: true })
@Column({ type: 'varchar', nullable: true })
sessionId?: string
@Column({type:'timestamp'})