diff --git a/src/notes/note.entity.ts b/src/notes/note.entity.ts index 825876b4c..30f06bb3b 100644 --- a/src/notes/note.entity.ts +++ b/src/notes/note.entity.ts @@ -26,6 +26,8 @@ import { MediaUpload } from '../media/media-upload.entity'; export class Note { @PrimaryGeneratedColumn('uuid') id: string; + @Column({ type: 'text' }) + publicId: string; @Column({ unique: true, nullable: true,