diff options
Diffstat (limited to 'src/models/entities/note.ts')
| -rw-r--r-- | src/models/entities/note.ts | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/models/entities/note.ts b/src/models/entities/note.ts index 253d157b8c..176fc626b3 100644 --- a/src/models/entities/note.ts +++ b/src/models/entities/note.ts @@ -16,13 +16,6 @@ export class Note { public createdAt: Date; @Index() - @Column('timestamp with time zone', { - nullable: true, - comment: 'The updated date of the Note.' - }) - public updatedAt: Date | null; - - @Index() @Column({ ...id(), nullable: true, |