mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 11:43:09 +02:00
33 lines
632 B
TypeScript
33 lines
632 B
TypeScript
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
|
import { id } from '../id.js';
|
|
import { User } from './User.js';
|
|
import { Note } from './Note.js';
|
|
|
|
@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(),
|
|
})
|
|
public userId: User['id'];
|
|
|
|
@ManyToOne(type => User, {
|
|
onDelete: 'CASCADE',
|
|
})
|
|
@JoinColumn()
|
|
public user: User | null;
|
|
|
|
@Index()
|
|
@Column('varchar', {
|
|
length: 256,
|
|
})
|
|
public threadId: string;
|
|
}
|