import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
import { User } from './user.js';
import { Note } from './note.js';
import { id } from '../id.js';
import { 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;
public noteId: Note['id'];
@ManyToOne(type => Note, {
public note: Note | null;
/**
* メンションか否か
*/
@Column('boolean')
public isMentioned: boolean;
* ダイレクト投稿か否か
public isSpecified: boolean;
//#region Denormalized fields
@Column({
...id(),
comment: '[Denormalized]'
public noteUserId: User['id'];
nullable: true,
public noteChannelId: Channel['id'] | null;
//#endregion
}