* 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
@@ -16,9 +16,11 @@ export class Variable implements IVariable {
@Column({ default: 'string', type: 'text' })
type: string
@Column({type:'timestamp'})
@CreateDateColumn()
createdDate: Date
@Column({type:'timestamp'})
@UpdateDateColumn()
updatedDate: Date
}