mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 11:23:09 +02:00
b9cb6d1c10
将来ESMに移行しやすいように Related: #7658 なんかmochaが起動しなくなってるけど理由不明 すぐ直したい
35 lines
762 B
TypeScript
35 lines
762 B
TypeScript
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
|
import { Note } from './note.js';
|
|
import { Channel } from './channel.js';
|
|
import { id } from '../id.js';
|
|
|
|
@Entity()
|
|
@Index(['channelId', 'noteId'], { unique: true })
|
|
export class ChannelNotePining {
|
|
@PrimaryColumn(id())
|
|
public id: string;
|
|
|
|
@Column('timestamp with time zone', {
|
|
comment: 'The created date of the ChannelNotePining.'
|
|
})
|
|
public createdAt: Date;
|
|
|
|
@Index()
|
|
@Column(id())
|
|
public channelId: Channel['id'];
|
|
|
|
@ManyToOne(type => Channel, {
|
|
onDelete: 'CASCADE'
|
|
})
|
|
@JoinColumn()
|
|
public channel: Channel | null;
|
|
|
|
@Column(id())
|
|
public noteId: Note['id'];
|
|
|
|
@ManyToOne(type => Note, {
|
|
onDelete: 'CASCADE'
|
|
})
|
|
@JoinColumn()
|
|
public note: Note | null;
|
|
}
|