* 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:
Emrah TOY
2024-03-19 12:57:45 +03:00
committed by GitHub
parent ac02cde2fa
commit ec1bbc84bc
12 changed files with 75 additions and 9 deletions
@@ -10,15 +10,17 @@ export class Assistant implements IAssistant {
@Column({ type: 'text' })
details: string
@Column()
@Column({ type: 'uuid'})
credential: string
@Column({ nullable: true })
iconSrc?: string
@Column({ type: 'timestamp' })
@CreateDateColumn()
createdDate: Date
@Column({ type: 'timestamp' })
@UpdateDateColumn()
updatedDate: Date
}