summaryrefslogtreecommitdiff
path: root/packages/backend/src/models/entities/NoteUnread.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/backend/src/models/entities/NoteUnread.ts')
-rw-r--r--packages/backend/src/models/entities/NoteUnread.ts63
1 files changed, 63 insertions, 0 deletions
diff --git a/packages/backend/src/models/entities/NoteUnread.ts b/packages/backend/src/models/entities/NoteUnread.ts
new file mode 100644
index 0000000000..af91234d0f
--- /dev/null
+++ b/packages/backend/src/models/entities/NoteUnread.ts
@@ -0,0 +1,63 @@
+import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
+import { id } from '../id.js';
+import { User } from './User.js';
+import { Note } from './Note.js';
+import type { Channel } from './Channel.js';
+
+@Entity()
+@Index(['userId', 'noteId'], { unique: true })
+export class NoteUnread {
+ @PrimaryColumn(id())
+ public id: string;
+
+ @Index()
+ @Column(id())
+ public userId: User['id'];
+
+ @ManyToOne(type => User, {
+ onDelete: 'CASCADE',
+ })
+ @JoinColumn()
+ public user: User | null;
+
+ @Index()
+ @Column(id())
+ public noteId: Note['id'];
+
+ @ManyToOne(type => Note, {
+ onDelete: 'CASCADE',
+ })
+ @JoinColumn()
+ public note: Note | null;
+
+ /**
+ * メンションか否か
+ */
+ @Index()
+ @Column('boolean')
+ public isMentioned: boolean;
+
+ /**
+ * ダイレクト投稿か否か
+ */
+ @Index()
+ @Column('boolean')
+ public isSpecified: boolean;
+
+ //#region Denormalized fields
+ @Index()
+ @Column({
+ ...id(),
+ comment: '[Denormalized]',
+ })
+ public noteUserId: User['id'];
+
+ @Index()
+ @Column({
+ ...id(),
+ nullable: true,
+ comment: '[Denormalized]',
+ })
+ public noteChannelId: Channel['id'] | null;
+ //#endregion
+}