2023-01-13 04:40:33 +00:00
|
|
|
import {
|
|
|
|
PrimaryColumn,
|
|
|
|
Entity,
|
|
|
|
Index,
|
|
|
|
JoinColumn,
|
|
|
|
Column,
|
|
|
|
ManyToOne,
|
|
|
|
} from "typeorm";
|
|
|
|
import { User } from "./user.js";
|
|
|
|
import { Note } from "./note.js";
|
|
|
|
import { id } from "../id.js";
|
2021-10-31 06:30:22 +00:00
|
|
|
|
|
|
|
@Entity()
|
|
|
|
@Index(['userId', 'threadId'], { unique: true })
|
|
|
|
export class NoteThreadMuting {
|
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Column('timestamp with time zone', {
|
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
})
|
2023-01-13 04:40:33 +00:00
|
|
|
public userId: User["id"];
|
2021-10-31 06:30:22 +00:00
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
2021-12-09 14:58:30 +00:00
|
|
|
onDelete: 'CASCADE',
|
2021-10-31 06:30:22 +00:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public user: User | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 256,
|
|
|
|
})
|
|
|
|
public threadId: string;
|
|
|
|
}
|